import { InjectionKey } from 'vue';
import { RadioValue } from './type';
export declare const RadioGroupInjectionKey: InjectionKey<{
    name: string;
    disabled: boolean;
    value: RadioValue;
    allowUncheck: boolean;
    setValue: (value: RadioValue, context: {
        e: Event;
    }) => void;
}>;
export declare const RadioButtonInjectionKey: InjectionKey<{}>;
