import { Context } from 'react';
import { RadioGroupProps } from './RadioGroup';

export interface RadioGroupState extends Pick<RadioGroupProps, 'name' | 'onChange' | 'value'> {}

export default function useRadioGroup(): RadioGroupState | undefined;
