/**
 * Address Legacy
 *
 * Profile's personal address information.
 */
export type AddressLegacy = {
    /**
     * City name from the address.
     */
    city?: string;
    /**
     * Two letter country code formatted according to [ISO3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2).
     */
    country?: string;
    /**
     * First line of the address with details of the street name and number.
     */
    line_1?: string;
    /**
     * Second line of the address with details of the building, unit, apartment, and floor numbers.
     */
    line_2?: string;
    /**
     * Postal code from the address.
     */
    postal_code?: string;
    /**
     * State name or abbreviation from the address.
     */
    state?: string;
};
//# sourceMappingURL=address-legacy.d.ts.map