UNPKG

@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.

7 lines (6 loc) 281 B
import type { ToastOptions } from '../../components/ui/molecules/Toast/Toast.types'; export interface ToastContextValue { showToast: (options: ToastOptions) => void; clearToasts: () => void; } export declare const ToastContext: import("preact").Context<ToastContextValue>;