/** @description The address information corresponding to a specific relay point */
export declare class RelayPointAddress {
    relay_point_id: string;
    company_name?: string;
    address_lines: string[];
    city_locality: string;
    state_province: string;
    postal_code: string;
    country_code: string;
}
