import { IdentityDto } from './../shared/identity.dto'; export declare class AddressDto { identity: IdentityDto; addressLine1: string; addressLine2: string; addressLine3: string; city: string; country: string; latitude: string; longitude: string; state: string; type: string; zipCode: string; constructor(d?: AddressDto); }