import { TOrderInput, TOrderStatus } from '@cromwell/core'; import { BasePageInput } from './base-page.input'; export declare class OrderInput extends BasePageInput implements TOrderInput { status?: TOrderStatus; userId?: number; cart?: string; orderTotalPrice?: number; cartTotalPrice?: number; cartOldTotalPrice?: number; shippingPrice?: number; totalQnt: number; customerName?: string; customerPhone?: string; customerEmail?: string; customerAddress?: string; shippingMethod?: string; paymentMethod?: string; customerComment?: string; currency?: string; couponCodes?: string[] | null; } //# sourceMappingURL=order.input.d.ts.map