@adyen/kyc-components
Version:
`adyen-kyc-components` provides the required pieces to build an onboarding flow based on a legal entity. To onboard and verify users, you need to create a user interface (UI) to collect user data. To speed up building your integration, Adyen offers onboar
10 lines (9 loc) • 444 B
TypeScript
import type { ComponentChildren } from 'preact';
import type { EventEmitter } from '../../core/EventEmitter';
export interface I18nProviderProps {
locale: string;
children?: ComponentChildren;
eventEmitter?: EventEmitter;
}
/** Translations provider, reacts on language change */
export declare const I18nProvider: ({ locale: initialLocale, eventEmitter, children, }: I18nProviderProps) => import("preact/jsx-runtime").JSX.Element;