import React, { FC } from 'react'; import { FormFieldPropsStrict } from '../FormField'; import { RadioProps } from '../Radio'; export interface FormRadioProps extends FormFieldPropsStrict, Omit, 'error'> { label: React.ReactNode; } declare type FormRadioType = FC>; export declare const FormRadio: FormRadioType; export {};