import type { Colors, ElProps } from '..'; export interface RadioProps extends Partial { disabled?: boolean; readonly?: boolean; value?: any; checked?: boolean; description?: string; name?: string; label?: string; color?: Colors; inline?: boolean; reverse?: boolean; for?: string; } export interface RadioGroupProps extends Partial { value?: any; color?: Colors; inline?: boolean; reverse?: boolean; items?: Array; }