import { Company, Customer, IAddress, ICompany, IPerson, IPhone, Person } from '../../../Models';
import { RecipientCategory } from '../../../Constants';
export declare class BillinkCustomer extends Customer {
    set address(address: IAddress);
    set phone(phone: IPhone);
    set recipient(recipient: IPerson | ICompany);
}
export declare class BillinkPerson extends Person {
    set category(category: RecipientCategory.PERSON);
    set title(title: string);
}
export declare class BillinkCompany extends Company {
    set category(category: RecipientCategory.COMPANY);
    set title(title: string);
}
