import { PropsWithChildren, default as React } from 'react'; import { RadioGroupContext } from './useRadioGroup'; export type RadioGroupProps = PropsWithChildren; declare const RadioGroup: ({ name, onChange, children, selectedValue, }: RadioGroupProps) => React.JSX.Element; export default RadioGroup; //# sourceMappingURL=RadioGroup.d.ts.map