import type { ExtractPropTypes, PropType } from 'vue'; import type { AcceptableColor } from '@interface-ui/theme'; export declare const radioProps: { modelValue: { type: (StringConstructor | BooleanConstructor | NumberConstructor)[]; required: boolean; }; size: { type: PropType<"small" | "medium" | "large">; value: readonly ["small", "medium", "large"]; default: string; }; color: { type: PropType; default: string; }; }; export type RadioProps = ExtractPropTypes;