export declare class CreateProductDto {
    title: string;
    description: string;
    categoryId: number;
    brand: string;
    brandId: string;
    cost: number;
    modifier: number;
    price: number;
}
