@adyen/kyc-components
Version:
This guide assumes that you have already an account with Adyen. A legalEntity needs to be created, and you need to have a `legalEntityId` to instatiate a Component.
10 lines (9 loc) • 727 B
TypeScript
import type { QueryOptions } from '../types';
import type { GetBankVerificationProviderResponse, GetBankVerificationQueryParams } from './transferInstruments.types';
/**
* Retrieves the list of bank verification providers and their respective urls.
* Bank verification providers are used to instantly verify payout accounts.
* @param queryParams the relevant country, locale, and configId
* @param options additional options passed to Tanstack Query, eg; onSuccess
*/
export declare const useBankVerificationProviders: (queryParams: GetBankVerificationQueryParams, options?: QueryOptions<GetBankVerificationProviderResponse>) => import("@tanstack/preact-query").UseQueryResult<GetBankVerificationProviderResponse, Error>;