import { OperationType, TransactionType } from '../response';
declare class AmountFilter {
    op: string;
    value: string;
}
export declare class TransactionFilter {
    id?: string;
    from?: number;
    amount?: AmountFilter[];
    to?: number;
    account?: string;
    counterAccount?: string;
    currency?: string;
    currencies?: string[];
    transactionTypes?: TransactionType[];
    paymentId?: string;
    transactionCode?: string;
    senderNote?: string;
    recipientNote?: string;
    opType?: OperationType;
    transactionType?: TransactionType;
}
export {};
