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