export declare class OrderItemDto {
    productVariantId: string;
    productName: string;
    sku: string;
    quantity: number;
    price: number;
}
export declare class CreateOrderDto {
    customerName: string;
    customerEmail?: string;
    customerPhone: string;
    shippingAddress: Record<string, any>;
    billingAddress?: Record<string, any>;
    items: OrderItemDto[];
    discount?: number;
    promoCode?: string;
    redeemPoints?: number;
}
