import EcomClient from './index'; export declare class Address { client: EcomClient; id: string; typ: string; contactName: string; addr1: string; addr2: string; city: string; county: string; postcode: string; country: string; created: Date; modified: Date; /** * @param {string} client reference to the EcomClient instance * @param {string} typ 'billing' or 'shipping' * @param {string} id address ID * @param {string} contactName * @param {string} addr1 * @param {string} addr2 * @param {string} city * @param {string} county * @param {string} postcode * @param {string} country 2 digit country code * @param {Date} created * @param {Date} modified */ constructor(client: EcomClient, id: string, typ: string, contactName: string, addr1: string, addr2: string, city: string, county: string, postcode: string, country: string, created: Date, modified: Date); delete(): Promise; /** * Creates and returns an object map suitable for placing an order. */ toOrderObject(): Object; }