import { ExtractPropTypes } from 'vue'; export declare const radioGroupProps: { modelValue: { type: (StringConstructor | NumberConstructor)[]; default: string; }; disabled: { type: BooleanConstructor; default: boolean; }; square: { type: BooleanConstructor; default: null; }; horizontal: { type: BooleanConstructor; default: boolean; }; checkedColor: { type: StringConstructor; default: null; }; }; export type RadioGroupPropKeys = keyof ExtractPropTypes; export interface RadioGroupProvide { props: ExtractPropTypes; onItemChange: (name: string) => void; }