UNPKG

@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

15 lines (14 loc) 677 B
import type { LegalEntityType } from '../../core/models/api/legal-entity-type'; import type { TranslationKey, Translations } from '../../language/types'; import type { IntroductionScreen } from './types'; export declare enum IntroductionScreenTranslationKeyElements { ListItem = "LI", Paragraph = "P" } interface IntroductionScreenTranslationKeyFactors { elementType?: IntroductionScreenTranslationKeyElements; legalEntityType: LegalEntityType; introductionScreen: IntroductionScreen; } export declare const getIntroductionScreenTranslationKeys: (translations: Translations, factors: IntroductionScreenTranslationKeyFactors) => TranslationKey[]; export {};