import { ReactNode } from 'react'; import { FormControlLabelProps, FormControlProps, FormHelperTextProps, FormLabelProps, RadioProps as MuiRadioProps, RadioGroupProps } from '@mui/material'; import { ShowErrorFunc } from './ErrorMessage'; import { FieldProps } from 'react-final-form'; export interface RadioData { label: ReactNode; value: unknown; disabled?: boolean; } export interface RadiosProps extends Partial> { name: string; data: RadioData[]; label?: ReactNode; required?: boolean; helperText?: string; formLabelProps?: Partial; formControlLabelProps?: Partial; fieldProps?: Partial>; formControlProps?: Partial; radioGroupProps?: Partial; formHelperTextProps?: Partial; showError?: ShowErrorFunc; } export declare function Radios(props: RadiosProps): JSX.Element;