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