import * as Enums from '../enums/index'; /** * TextCase info for input address * @export * @class AddressValidationInfo */ export declare class AddressValidationInfo { /** * @type {string} * @memberof AddressValidationInfo */ line1?: string | undefined; /** * @type {Enums.TextCase} * @memberof AddressValidationInfo */ textCase?: Enums.TextCase | undefined; /** * @type {string} * @memberof AddressValidationInfo */ line2?: string | undefined; /** * @type {string} * @memberof AddressValidationInfo */ line3?: string | undefined; /** * @type {string} * @memberof AddressValidationInfo */ city?: string | undefined; /** * @type {string} * @memberof AddressValidationInfo */ region?: string | undefined; /** * @type {string} * @memberof AddressValidationInfo */ country?: string | undefined; /** * @type {string} * @memberof AddressValidationInfo */ postalCode?: string | undefined; /** * @type {number} * @memberof AddressValidationInfo */ latitude?: number | undefined; /** * @type {number} * @memberof AddressValidationInfo */ longitude?: number | undefined; }