@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) • 486 B
TypeScript
import type { QueryOptions } from '../types';
import type { components } from './configurations.contract';
type VersionConfigurationResponse = components['schemas']['VersionResponse'];
export type QueryKeyVersionConfiguration = ['versionConfiguration'];
export declare const useVersionConfiguration: (options?: QueryOptions<VersionConfigurationResponse>) => import("@tanstack/preact-query").UseQueryResult<NoInfer<{
features?: string[];
version?: number;
}>, Error>;
export {};