UNPKG

@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

9 lines (8 loc) 596 B
import type { ExistingTransferInstrument } from '../../core/models/api/transfer-instrument'; import type { QueryOptions } from '../types'; /** * Gets a single transfer instrument associated with a legal entity * @param transferInstrumentId ID of transfer instrument * @param options additional options passed to Tanstack Query, eg; refetchInterval for polling */ export declare const useGetTransferInstrument: (transferInstrumentId?: string | undefined, options?: QueryOptions<ExistingTransferInstrument>) => import("@tanstack/react-query").UseQueryResult<ExistingTransferInstrument, Error>;