@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) • 440 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: propLocale, eventEmitter, children }: I18nProviderProps) => import("preact/jsx-runtime").JSX.Element;