import { default as React } from 'react'; import { FormRowHelperTextOwnProps } from '../../FormRow/FormRowHelperText'; import { RadioGroupOwnProps, SelectKey } from '../../Inputs/RadioGroup/RadioGroup'; export interface RadioFieldProps extends RadioGroupOwnProps, Partial { /** * Renders a label for the entire group. */ label: string; /** * Whether the label should be visually hidden. */ hiddenLabel?: boolean; } export declare const RadioField: (({ id, name, label, hiddenLabel, error, warning, hint, value, defaultValue, onChange, disabled, disabledValues, getOptionValue, getOptionLabel, getOptionTooltip, options, required, renderOption, layout, orientation, minColumnWidth, gap, ...rest }: RadioFieldProps) => React.JSX.Element) & { Option: typeof import('../..').RadioOption; ImageOption: typeof import('../../Inputs/RadioGroup/RadioGroupImageOption').RadioGroupImageOption; };