import { Context } from 'react'; import { RadioGroupProps } from './PropsType'; export interface RadioContextState { parent?: { props: RadioGroupProps; }; toggle?: (name: string | number) => void; checked?: string | number; } declare const RadioContext: Context; export default RadioContext;