import type { InjectionKey, Slots } from 'vue'; export interface CheckboxGroupContext { name: 'ArcoCheckboxGroup'; computedValue: Array; disabled: boolean; isMaxed: boolean; slots: Slots; handleChange: (value: Array, e: Event) => void; } export declare const checkboxGroupKey: InjectionKey;