import type { ExistingTransferInstrument, TransferInstrument } from '../../core/models/api/transfer-instrument'; import type { MutationOptions } from '../types'; interface MutationPayload { transferInstrument: TransferInstrument; transferInstrumentId: string; } /** * Updates a transfer instrument associated with a legal entity * When update is successful, updates the transfer instrument query and invalidates transfer instruments * @param options additional options passed to Tanstack Query */ export declare const useUpdateTransferInstrument: (options?: MutationOptions) => import("@tanstack/preact-query").UseMutationResult; export {};