import type { ComputedRef, Ref } from 'vue'; import type { FormOption } from '@inkline/inkline/types'; export interface CheckboxGroupInjection { name: Ref; value: ComputedRef; size: Ref; color: Ref; disabled: Ref; readonly: Ref; onChange: (value: any) => void; onBlur: (event: FocusEvent) => void; } export interface CheckboxGroupOption extends FormOption { indeterminate?: boolean; }