/// <reference types="react" />
import { RadioGroupDirection } from "./radio-group.shared";
interface RadioGroupContextValue {
    value?: any;
    disabled?: boolean;
    direction?: RadioGroupDirection;
    size?: number;
    onChange?(value: any): void;
}
declare const RadioGroupContext: import("react").Context<RadioGroupContextValue>;
export default RadioGroupContext;
