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