@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) • 633 B
TypeScript
import type { SingpassMyInfoLoginState } from '../../core/hooks/singpass/useSingpassMyInfoLogin';
import { LegalEntityType } from '../../core/models/api/legal-entity-type';
interface SingpassBannerProps extends SingpassMyInfoLoginState {
onAlertClose: () => void;
onClick: () => void;
onMessage: (message: {
data: {
isSuccessful: boolean;
};
}) => void;
legalEntityType: LegalEntityType;
}
export declare const SingpassBanner: ({ isLoading, isSuccess, errorMessage, onClick, onAlertClose, onMessage, legalEntityType, }: SingpassBannerProps) => import("preact").JSX.Element;
export {};