export declare class CurrencyOperation {
    accountId: string;
    amount: string;
    paymentId?: string;
    transactionCode?: string;
    senderNote?: string;
    recipientNote?: string;
    counterAccount?: string;
    reference?: string;
}
