import EcomClient from './index'; declare type orderAddress = { contactName: string; addr1: string; addr2: string; city: string; county: string; postcode: string; country: string; }; export declare class Order { client: EcomClient; id: string; status: string; payment: string; contactName: string; email: string; billingAddr: orderAddress; shippingAddr: orderAddress; created: Date; modified: Date; constructor(client: EcomClient, id: string, status: string, payment: string, contactName: string, email: string, billingAddr: orderAddress, shippingAddr: orderAddress, created: Date, modified: Date); } export {};