import type { ExtractPropTypes } from 'vue'; export declare const radioGroupProps: { readonly size: { type: PropType<"default" | "small" | "large">; }; readonly disabled: { readonly type: BooleanConstructor; readonly default: undefined; }; readonly modelValue: { readonly type: PropType; readonly default: ""; }; readonly fill: { readonly type: StringConstructor; readonly default: ""; }; readonly textColor: { readonly type: StringConstructor; readonly default: ""; }; readonly items: { readonly type: PropType<{ value: string | number | boolean; label: string; }[]>; readonly default: () => never[]; }; readonly label: { type: StringConstructor; }; readonly field: { type: StringConstructor; }; readonly tips: { type: StringConstructor; }; readonly span: { type: PropType; }; readonly required: { type: BooleanConstructor; }; }; export type RadioGroupProps = ExtractPropTypes;