import { IAddress, ICompany, IPerson, IPhone, Model } from './../';
export interface ICustomer {
    phone?: Partial<IPhone>;
    email?: string;
    recipient?: Partial<IPerson | ICompany>;
    address?: Partial<IAddress>;
}
export declare class Customer extends Model {
    set address(address: Partial<IAddress>);
    set email(email: string);
    set phone(phone: Partial<IPhone>);
    set recipient(recipient: IPerson | ICompany);
}
