import * as react_jsx_runtime from 'react/jsx-runtime'; import { HTMLAttributes, Dispatch, SetStateAction, ReactNode } from 'react'; interface RadioGroupProps extends HTMLAttributes { value: string; setValue: Dispatch>; children: ReactNode; } declare function RadioGroup({ value, setValue, children, ...props }: RadioGroupProps): react_jsx_runtime.JSX.Element; export { RadioGroup, type RadioGroupProps };