import type { ExtractPropTypes } from 'vue'; export declare const radioButtonProps: { readonly name: { readonly type: StringConstructor; readonly default: ""; }; readonly size: { type: PropType<"default" | "small" | "large">; }; readonly disabled: { type: BooleanConstructor; default: undefined; }; readonly value: { type: PropType; default: string; }; readonly label: { type: StringConstructor; }; readonly field: { type: StringConstructor; }; readonly tips: { type: StringConstructor; }; readonly span: { type: PropType; }; readonly required: { type: BooleanConstructor; }; }; export type RadioButtonProps = ExtractPropTypes;