import { TransactionMethods } from '../../types/transaction-methods';
import { IAccount } from '../../payme.module';
export declare class CreateTransactionRequestDto {
    method: TransactionMethods;
    params: {
        id: string;
        time: number;
        amount: number;
        account: IAccount;
    };
    id: number;
}
