/// import { FieldProps, InputProps, GroupingControlsProps } from '../../types'; export interface RadioField extends FieldProps, InputProps, GroupingControlsProps { groupLabel?: string; } /** * @deprecated *RadioField* it's being deprecated and will be removed on the next release. Use *RadioGroupField* component instead. */ declare const _default: ({ groupLabel, label, hasError, errorMessage, isValid, value, inputSize, className, hideControl, ...rest }: RadioField) => JSX.Element; export default _default;