declare class AgencyPhoneType {
    e164: string;
    nationalNumber: string;
    countryCode: string;
}
declare class AgencyAddressType {
    country: string;
    province: string;
    address: string;
}
export declare class Agency {
    _id: string;
    IDUser: string;
    agencyName: string;
    address: AgencyAddressType;
    phone: AgencyPhoneType;
}
export {};
