import { CheckboxProps } from './types'; type __VLS_Props = CheckboxProps; type __VLS_PublicProps = { modelValue?: boolean | 'indeterminate' | null | any[]; } & __VLS_Props; declare function __VLS_template(): { attrs: Partial<{}>; slots: { icon?(_: {}): any; default?(_: {}): any; }; refs: { inputRef: HTMLInputElement; }; rootEl: HTMLLabelElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { change: (event: Event) => any; focus: (event: FocusEvent) => any; blur: (event: FocusEvent) => any; "update:modelValue": (...args: unknown[]) => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onChange?: ((event: Event) => any) | undefined; onFocus?: ((event: FocusEvent) => any) | undefined; onBlur?: ((event: FocusEvent) => any) | undefined; "onUpdate:modelValue"?: ((...args: unknown[]) => any) | undefined; }>, { disabled: boolean; indeterminate: boolean; required: boolean; binary: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, { inputRef: HTMLInputElement; }, HTMLLabelElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };