export declare class CreateBrandDto {
    name: string;
    slug: string;
    description?: string;
    logo?: string;
    isActive?: boolean;
}
