import { ExtractPropTypes, PropType } from 'vue'; import { ButtonSize } from '../../button'; export declare const radioProps: { readonly size: { readonly type: PropType; readonly default: "default"; }; readonly label: { readonly type: StringConstructor; readonly default: ""; }; readonly modelValue: { readonly type: PropType; readonly default: undefined; }; readonly trueValue: { readonly type: PropType; readonly default: undefined; }; readonly disabled: BooleanConstructor; }; export type RadioProps = ExtractPropTypes;