import type { DefineComponent } from "vue"; /** RadioGroup component props */ export interface RadioGroupProps { /** default: */ modelValue?: string | number | boolean; disabled?: boolean; /** default: horizontal */ direction?: string; size?: any; theme?: string; shape?: string; options?: any[]; type?: string; } /** RadioGroup Vue 3 component */ declare const RadioGroup: DefineComponent; export default RadioGroup;