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