import { Address } from './address';
import { Recipient } from './recipient';
export declare class SavedAddress {
    id: string;
    createdAt: Date;
    merchantId: string;
    recipient: Recipient;
    address: Address;
    freeSearch?: string;
}
