import type { ExistingTransferInstrument } from '../../core/models/api/transfer-instrument'; import type { Currency } from '../../types/datasets/currency'; import type { MutationOptions } from '../types'; export type QueryKeyTrustedTransferInstrument = ['trustedTransferInstrument', string]; interface MutationPayload { preferredCurrencyCode: Currency; transferInstrumentId: string; } /** * Updates a trusted 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 useUpdateTrustedTransferInstrument: (options?: MutationOptions) => import("@tanstack/preact-query").UseMutationResult; export {};