import { AddressEntity, EDocType } from '../../general';
import { IInvoicePayer } from '../interfaces/i-invoice-payer';
export declare class InvoicePayerEntity implements IInvoicePayer {
    address: AddressEntity;
    doc: string;
    docType: EDocType;
    email: string;
    internationalCode: string;
    name: string;
    phoneNumber: string | null;
    constructor(data?: Partial<InvoicePayerEntity>);
}
