import type { MutationOptions } from '../types';
import type { components } from './transferInstruments.contract';
export type CreateTrustedTransferInstrumentResponse = components['schemas']['BankVerificationResponse'];
type CreateTrustedTransferInstrumentRequestData = components['schemas']['CreateTrustedTransferInstrumentRequest'];
/**
 * Creates a trusted transfer instrument in LEM using the information provided by Open Banking
 * @param options additional options passed to Tanstack Query, eg; onSuccess
 */
export declare const useCreateTrustedTransferInstrument: (options?: MutationOptions<CreateTrustedTransferInstrumentResponse, Error, CreateTrustedTransferInstrumentRequestData>) => import("@tanstack/react-query").UseMutationResult<{
    accounts?: components["schemas"]["BankAccountSummary"][];
    error?: string;
    errorMessage?: string;
    verificationReference?: string;
}, Error, {
    code: string;
    state: string;
}, unknown>;
export {};
