import { CheckboxGroupEmits, CheckboxGroupModelValue, CheckboxGroupProps, SelectOption, WithElement } from '../../types'; import { InputWithOptionsContext } from './useInputWithOptionsContext'; export type CheckboxGroupContext = InputWithOptionsContext & { createUpdateHandler(option: SelectOption): (toggle: boolean) => void; }; export declare const useCheckboxGroupContext: (props: WithElement>, emit: CheckboxGroupEmits) => CheckboxGroupContext;