import { ITransactionPayer } from '../interfaces/i-payer';
export declare class TransactionPayerEntity implements ITransactionPayer {
    account: string | null;
    bank: string | null;
    branch: string | null;
    name: string | null;
    doc: string | null;
    constructor(data?: Partial<TransactionPayerEntity>);
}
