import type { ComputedRef, InjectionKey } from 'vue'; import type { AnyFunction } from 'southgisui/es/utils/types'; import type { ComponentSize } from 'southgisui/es/utils/size'; export declare type CheckboxValueType = string | number | boolean; export interface ICheckboxGroupInstance { name?: string; modelValue?: ComputedRef; disabled?: ComputedRef; min?: ComputedRef; max?: ComputedRef; size?: ComputedRef; fill?: ComputedRef; textColor?: ComputedRef; checkboxGroupSize?: ComputedRef; changeEvent?: AnyFunction; } export declare const CheckboxGroupContextKey: InjectionKey;