import * as react from 'react'; import { a as InputBaseProps, b as InputOption } from './inputs.types-CJbAS14j.cjs'; import './types-8Sv0rCjw.cjs'; interface RadioGroupProps extends Omit { list: InputOption[]; value?: V; defaultValue?: V; onValueChange?: (value: V) => void; orientation?: "horizontal" | "vertical"; } declare function RadioGroup({ size, dirty, error, label, labelHidden, description, required, disabled, className, name, list, value: controlledValue, defaultValue, onValueChange, orientation, mode, ...rest }: RadioGroupProps): react.JSX.Element; declare namespace RadioGroup { var displayName: string; } export { RadioGroup, type RadioGroupProps };