UNPKG

@seontechnologies/seon-id-verification

Version:

An advanced SDK featuring web components for natural person identification through document scanning, facial recognition, hand gesture, and face turning detection, designed for secure and efficient user verification.

10 lines (9 loc) 564 B
import { TScreensProps } from '../../../../shared/types/screen/type-screens-props'; import { BlinkIdCore, RemoteScanningSession } from '@microblink/blinkid-core'; interface MicroblinkBlinkIDProps extends TScreensProps { onScannerClosed: () => void; blinkIdSession: RemoteScanningSession | null; blinkIdCore: BlinkIdCore | null; } declare const MicroblinkBlinkID: ({ onNext, onScannerClosed, data, onBack, hardRefresh, blinkIdSession, blinkIdCore, }: MicroblinkBlinkIDProps) => import("react/jsx-runtime").JSX.Element; export default MicroblinkBlinkID;