import { Location } from './location';
import { Recipient } from './recipient';
export declare class Address {
    id: string;
    createdAt: Date;
    merchantId: string;
    recipient: Recipient;
    number: string;
    street: string;
    unit?: string;
    postalCode: string;
    city: string;
    sublocality?: string;
    province: string;
    country: string;
    location: Location;
}
