import React from 'react'; import { RadioGroupShape } from './types'; export declare const RadioContext: React.Context<{ labelPosition: "left" | "right"; disabled: boolean | undefined; value: string | number; shape: RadioGroupShape | undefined; check: (value: string | number) => void; uncheck: () => void; direction?: "horizontal" | "vertical"; } | null>;