///
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;
export default RadioGroupContext;