import type { ComponentInternalInstance } from 'vue'; import type { CheckboxProps } from '../checkbox'; export declare const useCheckbox: (props: CheckboxProps, slots: ComponentInternalInstance["slots"]) => { inputId: any; isLabeledByFormItem: any; isChecked: any; isDisabled: any; isFocused: any; checkboxButtonSize: any; checkboxSize: any; hasOwnLabel: any; model: any; actualValue: any; handleChange: (e: Event) => void; onClickRoot: (e: MouseEvent) => Promise; };