import { Location } from './location';
export declare class Address {
    number: string;
    street: string;
    unit?: string;
    postalCode: string;
    city: string;
    sublocality?: string;
    province: string;
    country: string;
    location: Location;
    isBusinessAddress?: boolean;
}
