import { ExtractPropTypes, PropType } from 'vue'; export type RadioGroupSize = 'large' | 'default' | 'small'; export declare const radioGroupProps: { readonly modelValue: { readonly type: readonly [StringConstructor, NumberConstructor, BooleanConstructor]; readonly default: ""; }; readonly disabled: { readonly type: BooleanConstructor; readonly default: false; }; readonly size: { readonly type: PropType; readonly default: ""; }; readonly name: { readonly type: StringConstructor; readonly default: ""; }; readonly textColor: { readonly type: StringConstructor; readonly default: "#ffffff"; }; readonly fill: { readonly type: StringConstructor; readonly default: "#409EFF"; }; }; export declare const radioGroupEmits: { 'update:modelValue': (val: string | number | boolean) => boolean; change: (val: string | number | boolean) => boolean; }; export type RadioGroupProps = ExtractPropTypes; export type RadioGroupEmits = typeof radioGroupEmits;