export declare enum ProductType {
    SIMPLE = "SIMPLE",
    VARIABLE = "VARIABLE",
    DIGITAL = "DIGITAL"
}
export declare class CreateProductDto {
    name: string;
    slug: string;
    shortDescription?: string;
    description?: string;
    type?: ProductType;
    categoryId?: string;
    brandId?: string;
    tagIds?: string[];
    isActive?: boolean;
}
