import React from 'react'; import { RadioGroupProps } from '@mui/material'; import { ControllerProps } from 'react-hook-form'; import { StringTranslation } from '../../types'; export interface RadioControlProps extends Omit { name: string; label?: string; defaultValue?: string; enableErrorMessage?: boolean; disabled?: boolean; rules?: ControllerProps['rules'] | undefined; required?: boolean; size?: 'medium' | 'small'; labelTrue?: StringTranslation; labelFalse?: StringTranslation; } declare const RadioControl: ({ name, label, rules, defaultValue, required, enableErrorMessage, disabled, size, labelTrue, labelFalse, }: RadioControlProps) => React.JSX.Element; export default RadioControl; //# sourceMappingURL=RadioControl.d.ts.map