import { Amount } from "./amount";
export declare class Transaction {
    resultUrl?: string;
    returnUrl?: string;
    merchantReference?: string;
    amountDetails: Amount;
    transactionType: string;
    reasonForPayment: string;
    constructor(amount: number, currencyCode: string, reasonForPayment: string, merchantReference?: string);
}
//# sourceMappingURL=transaction.d.ts.map