/**
 * Lob
 * The Lob API is organized around REST. Our API is designed to have predictable, resource-oriented URLs and uses HTTP response codes to indicate any API errors. <p> Looking for our [previous documentation](https://lob.github.io/legacy-docs/)?
 *
 * The version of the OpenAPI document: 1.3.0
 * Contact: lob-openapi@lob.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * A nested object containing a breakdown of each component of an address.
 * @export
 * @class IntlComponents
 */
export declare class IntlComponents {
    constructor(input?: any);
    /**
     * The numeric or alphanumeric part of an address preceding the street name. Often the house, building, or PO Box number.
     * @type {string}
     * @memberof IntlComponents
     */
    "primary_number"?: string;
    /**
     * The name of the street.
     * @type {string}
     * @memberof IntlComponents
     */
    "street_name"?: string;
    /**
     *
     * @type {string}
     * @memberof IntlComponents
     */
    "city"?: string;
    /**
     * The [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2) two letter code for the state.
     * @type {string}
     * @memberof IntlComponents
     */
    "state"?: string;
    /**
     * The postal code.
     * @type {string}
     * @memberof IntlComponents
     */
    "postal_code"?: string;
    toJSON(): {};
}
/**
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
