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