import { PropType, InjectionKey, ComputedRef } from "vue"; import { ExtractPublicPropTypes } from "../../util/extract-public-props"; interface RadioApiInjection { name?: string; valueRef: ComputedRef; doUpdateValue: (value: string) => void; } export declare const radioApiInjectionKey: InjectionKey; declare const radioGroupProps: { value: StringConstructor; "onUpdate:value": PropType<(value: string) => void>; name: StringConstructor; }; export declare type RadioGroupProps = ExtractPublicPropTypes; declare const _default: import("vue").DefineComponent<{ value: StringConstructor; "onUpdate:value": PropType<(value: string) => void>; name: StringConstructor; }, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly void>; name: StringConstructor; }>>, {}>; export default _default;