import { ExtractPropTypes, InjectionKey } from "vue";
export declare const UiRadioGroupPropsOption: {
    readonly modelValue: {
        readonly type: StringConstructor;
        readonly required: true;
    };
    readonly name: {
        readonly type: StringConstructor;
    };
};
export declare const UiRadioGroupEmits: {
    "update:modelValue": (value: any) => boolean;
    change: () => boolean;
};
export type UiRadioGroupProps = ExtractPropTypes<typeof UiRadioGroupPropsOption>;
export type UiRadioGroupInjectionKeyType = InjectionKey<{
    define: UiRadioGroupProps;
    change: (...args: any) => void;
}>;
export declare const UiRadioGroupInjectionKey: UiRadioGroupInjectionKeyType;
