import { ValidationError } from 'class-validator'; import { IValidatable } from '../interface/IValidatable'; import { AddressType } from './AddressType'; export declare class Address implements IValidatable { constructor(partial?: Partial
); id: string; type: AddressType; name?: string; company?: string; address1?: string; address2?: string; city?: string; zip?: string; region?: string; regionCode?: string; country?: string; countryCode?: string; latitude?: number; longitude?: number; getFormatted(): string; private order; isValid(): Promise