@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.
9 lines (8 loc) • 428 B
TypeScript
import type { SettingsProps } from './types';
/**
* Consumers can pass settings @see settingsDefaults, which can alter on runtime
* the behaviour of our library
* The settings are dynamically passed during SDK initialization (same as legalEntityId)
* @param settings - dictionary of type Settings
*/
export declare function SettingsProvider({ children, settings }: SettingsProps): import("preact/jsx-runtime").JSX.Element;