/// import { IRadioEvent } from './AbstractRadio'; export interface IRadioContext { value: Value | undefined; isValueEqual(a: Value | undefined, b: Value | undefined): boolean; disabled: boolean; readOnly: boolean; onRadioChange: ((e: IRadioEvent) => void) | null | undefined; } declare const context: import("react").Context>; export default context;