UNPKG

@nestledjs/forms

Version:

A flexible React form library supporting both declarative and imperative usage patterns with TypeScript support

8 lines (7 loc) 310 B
import { FormFieldProps, FormField, FormFieldType } from '../form-types'; export declare function RadioField(props: FormFieldProps<Extract<FormField, { type: FormFieldType.Radio; }>> & { formReadOnly?: boolean; formReadOnlyStyle?: 'value' | 'disabled'; }): import("react/jsx-runtime").JSX.Element;