import type { InjectionKey, ToRefs, WritableComputedRef } from 'vue'; import type { CheckboxGroupProps } from './checkbox-group'; declare type CheckboxGroupContext = { modelValue?: WritableComputedRef; changeEvent?: (...args: any) => any; } & ToRefs>; export declare const checkboxGroupContextKey: InjectionKey; export {};