UNPKG

@uiw/react-native

Version:
14 lines (13 loc) 422 B
/// <reference types="react" /> import { KeyType } from '../types'; import { RadioProps } from '../../Radio'; interface FormRadioProps extends RadioProps { value?: KeyType; onChange?: (value: KeyType) => void; options?: Array<{ label: string; value: KeyType; }>; } declare const FormRadio: ({ value, onChange, options, ...others }: FormRadioProps) => JSX.Element; export default FormRadio;