/**
 * 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 a reverse geocoded response.
 * @export
 * @class GeocodeComponents
 */
export declare class GeocodeComponents {
    constructor(input?: any);
    /**
     * The 5-digit ZIP code
     * @type {string}
     * @memberof GeocodeComponents
     */
    private "_zip_code";
    get zip_code(): string;
    set zip_code(newValue: string);
    /**
     *
     * @type {string}
     * @memberof GeocodeComponents
     */
    private "_zip_code_plus_4";
    get zip_code_plus_4(): string;
    set zip_code_plus_4(newValue: 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.
 */
