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>;
