/**
 * 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.
 */
/**
 *
 * @export
 * @class Suggestions
 */
export declare class Suggestions {
    constructor(input?: any);
    /**
     * The primary delivery line (usually the street address) of the address. Combination of the following applicable `components` (primary number & secondary information may be missing or inaccurate): * `primary_number` * `street_predirection` * `street_name` * `street_suffix` * `street_postdirection` * `secondary_designator` * `secondary_number` * `pmb_designator` * `pmb_number`
     * @type {string}
     * @memberof Suggestions
     */
    "primary_line": string;
    /**
     *
     * @type {string}
     * @memberof Suggestions
     */
    "city": string;
    /**
     * The [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2) two letter code for the state.
     * @type {string}
     * @memberof Suggestions
     */
    "state": string;
    /**
     * A 5-digit zip code. Left empty if a test key is used.
     * @type {string}
     * @memberof Suggestions
     */
    "zip_code": string;
    /**
     * Value is resource type.
     * @type {string}
     * @memberof Suggestions
     */
    "object"?: SuggestionsObjectEnum;
    toJSON(): {};
}
/**
 * @export
 * @enum {string}
 */
export declare enum SuggestionsObjectEnum {
    UsAutocompletion = "us_autocompletion"
}
/**
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
