export declare class TransactionResponse {
    id?: string;
    iso8583?: string;
}
export declare class TransactionRequest {
    readonly userIdentityId: string;
    readonly transactionId: string;
    readonly stan?: string | undefined;
    readonly catid?: string | undefined;
    readonly caid?: string | undefined;
    readonly iso8583?: string | undefined;
    /**
     * @param userIdentityId Federated identity of the login end-user making the request.
     * @param transactionId Client generated uuid for referencing requested transaction.
     * @param stan STAN of the transaction.
     * @param catid <add description>
     * @param caid <add description>
     * @param iso8583 Base64 encoded of the DUKPT encrypted IS8583 financial message
     */
    constructor(userIdentityId: string, transactionId: string, stan?: string | undefined, catid?: string | undefined, caid?: string | undefined, iso8583?: string | undefined);
}
