import { PropType } from 'vue'; import { RadioVariantProps } from './radio.themes'; export declare const radioProps: { value: { type: PropType; default: string; }; isShowRadioControl: { type: PropType; default: boolean; }; }; export declare const radioGroupProps: { modelValue: { type: PropType; default: string; }; label: { type: PropType; default: string; }; size: { type: PropType; default: string; }; };