@adyen/kyc-components
Version:
`adyen-kyc-components` provides the required pieces to build an onboarding flow based on a legal entity. To onboard and verify users, you need to create a user interface (UI) to collect user data. To speed up building your integration, Adyen offers onboar
14 lines (13 loc) • 769 B
TypeScript
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<ExistingTransferInstrument, unknown, MutationPayload>) => import("@tanstack/react-query").UseMutationResult<ExistingTransferInstrument, unknown, MutationPayload, unknown>;
export {};