import { TProductInput, TStockStatus } from '@cromwell/core'; import { AttributeInstance } from '../objects/attribute-instance.object'; import { BasePageInput } from './base-page.input'; import { ProductVariantInput } from './product-variant.input'; export declare class CreateProduct extends BasePageInput implements TProductInput { name: string; categoryIds: number[]; mainCategoryId: number; price: number; oldPrice?: number; sku?: string; mainImage: string; images: string[]; description?: string; descriptionDelta?: string; attributes?: AttributeInstance[]; stockAmount?: number; stockStatus?: TStockStatus; manageStock?: boolean; variants?: ProductVariantInput[]; } //# sourceMappingURL=product.create.d.ts.map