@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) • 411 B
TypeScript
import type { ComponentChildren } from 'preact';
import type { TopLevelDataSchema } from './types';
interface StateProviderProps<TLDS extends TopLevelDataSchema> {
defaultData?: TLDS | object;
children: ComponentChildren;
}
export declare function StateProvider<TLDS extends TopLevelDataSchema>({ defaultData, children, }: StateProviderProps<TLDS>): import("preact/jsx-runtime").JSX.Element;
export {};