@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
7 lines (6 loc) • 523 B
TypeScript
import './Summary.scss';
import type { TopLevelDataSchema } from '../../core/context/StateContext/types';
import type { FormModel } from '../../core/models/form';
import type { SummaryProps } from './types';
export declare const summaryStep: FormModel;
export declare function Summary<TLDS extends TopLevelDataSchema>({ data, forms, gotoForm, labels, problems, trackNavigation, omitted, showFormHeader, showSectionHeader, showLegalCaption, showTaxExemptedLegalCaption, }: SummaryProps<TLDS>): import("preact").JSX.Element;