@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.
16 lines (15 loc) • 590 B
TypeScript
import { ReactNode } from 'react';
interface CardContentWrapperProps {
children?: ReactNode;
onNext: () => void;
onBack: () => void;
idPrefix: string;
title: string;
description: string;
nextButtonText: string;
backButtonText: string;
nextButtonDisabled?: boolean;
className?: string;
}
declare const CardContentWrapper: ({ children, onNext, onBack, idPrefix, title, description, nextButtonText, backButtonText, nextButtonDisabled, className, }: CardContentWrapperProps) => import("react/jsx-runtime").JSX.Element;
export default CardContentWrapper;