/// <reference types="react" />
import type { RadioGroupProps, RadioProps } from '.';
export declare const RadioGroupContext: import("react").Context<{
    type: RadioGroupProps['type'];
    value: RadioGroupProps['value'];
    block: RadioGroupProps['block'];
    disabled: RadioGroupProps['disabled'];
    compact: RadioGroupProps['compact'];
    listIconAlign: RadioGroupProps['listIconAlign'];
    check: (value: RadioProps['value']) => void;
}>;
