import { CheckboxProps, CheckboxSlots } from './types'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Slots = CheckboxSlots; type __VLS_Props = CheckboxProps; type __VLS_ModelProps = { modelValue?: boolean | string | number | undefined; "indeterminate"?: boolean; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_base: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { change: (value: boolean) => any; "update:modelValue": (value: string | number | boolean | undefined) => any; "update:indeterminate": (value: boolean) => any; }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onChange?: ((value: boolean) => any) | undefined; "onUpdate:modelValue"?: ((value: string | number | boolean | undefined) => any) | undefined; "onUpdate:indeterminate"?: ((value: boolean) => any) | undefined; }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };