Files

5 lines
200 B
TypeScript
Raw Permalink Normal View History

import { RadioGroupContextValue } from './RadioGroupContext';
export interface RadioGroupState extends RadioGroupContextValue {
}
export default function useRadioGroup(): RadioGroupState | undefined;