import type { QueryOptions } from '../types';
import type { ProvidersConfigurationRequest, ProvidersConfigurationResponse } from './providersConfiguration.types';
export type QueryKeyProvidersStatus = ['providersStatus', ProvidersConfigurationRequest];
/**
 * Asks the backend if 3rd party providers like Loqate and Onfido are available.
 *
 * Bank verification providers are not included, as these are handled by Open Banking.
 */
export declare const useProviderStatus: (data: ProvidersConfigurationRequest, options?: QueryOptions<ProvidersConfigurationResponse>) => import("@tanstack/preact-query").UseQueryResult<ProvidersConfigurationResponse, Error>;
