import { TProductVariantInput, TStockStatus } from '@cromwell/core'; import { BasePageInput } from './base-page.input'; export declare class ProductVariantInput extends BasePageInput implements TProductVariantInput { id?: number | null; name?: string | null; price?: number | null; oldPrice?: number | null; sku?: string | null; mainImage?: string | null; images?: string[] | null; stockAmount?: number | null; stockStatus?: TStockStatus | null; manageStock?: boolean | null; description?: string | null; descriptionDelta?: string | null; attributes: Record | undefined | null; } //# sourceMappingURL=product-variant.input.d.ts.map