import type { ComputedRef } from 'vue'; import type { ComponentSize } from 'element-plus/es/constants'; export interface ICheckboxGroupInstance { name?: string; modelValue?: ComputedRef; disabled?: ComputedRef; min?: ComputedRef; max?: ComputedRef; size?: ComputedRef; fill?: ComputedRef; textColor?: ComputedRef; checkboxGroupSize?: ComputedRef; changeEvent?: (...args: any[]) => any; }