import { CountryModel } from './coutry.model'; export declare class AdressModel { id: number; thirdPartyId: number; addressType: string; street1: string; street2: string; street3: string; bp: string; city: string; zipCode: string; country: CountryModel; tel: string; fax: string; email: string; checked: boolean; action: string; constructor(id?: number, thirdPartyId?: number, addressType?: string, street1?: string, street2?: string, street3?: string, bp?: string, city?: string, zipCode?: string, country?: CountryModel, tel?: string, fax?: string, email?: string, checked?: boolean, action?: string); fromJSON(json: any): this; } //# sourceMappingURL=adress.model.d.ts.map