import { BaseModel } from './base-model';
/**
 * Represents a postal address
 */
export declare class Address extends BaseModel {
    private _addressLine1;
    private _addressLine2;
    private _city;
    private _postalCode;
    private _stateCode;
    private _countryCode;
    get addressLine1(): string;
    set addressLine1(value: string);
    get addressLine2(): string;
    set addressLine2(value: string);
    get city(): string;
    set city(value: string);
    get postalCode(): string;
    set postalCode(value: string);
    get stateCode(): string;
    set stateCode(value: string);
    get countryCode(): string;
    set countryCode(value: string);
    /**
     * Converts the address to a JSON representation
     */
    toJSON(): any;
}
