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.

12 lines (11 loc) 500 B
import { TOption } from '../select/SelectInput'; type RadioProps<ValueType extends string | number> = { options: TOption<ValueType>[]; onChange: (value: TOption<ValueType>) => void; idPrefix: string; label?: string; required?: boolean; value?: TOption<ValueType> | null; }; declare function RadioInput<ValueType extends string | number>({ options, onChange, idPrefix, label, value }: RadioProps<ValueType>): import("react/jsx-runtime").JSX.Element; export default RadioInput;