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.

9 lines (8 loc) 323 B
interface UseHasSeenIntroductionProps { legalEntityId: string; } export declare const useHasSeenIntroduction: ({ legalEntityId }: UseHasSeenIntroductionProps) => { hasSeenIntroduction: boolean; setHasSeenIntroduction: import("preact/hooks").Dispatch<import("preact/hooks").StateUpdater<boolean>>; }; export {};