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

12 lines (11 loc) 561 B
import type { ActionType, AdditionalEventProperties, UserEvents } from '../core/user-events'; import type { TranslationKey } from '../../types'; export interface TrackNavigationProps { userEvents: UserEvents; actionType: ActionType; toForm?: TranslationKey; label: string; returnValue?: 'success' | 'validation error'; additionalTrackingParams?: Partial<AdditionalEventProperties>; } export declare const trackNavigation: ({ userEvents, actionType, toForm, label, returnValue, additionalTrackingParams, }: TrackNavigationProps) => void;