import { SuperCheckboxProps } from './type'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; declare function __VLS_template(): { attrs: Partial<{}>; slots: Partial any>> & { default?(_: {}): any; }; refs: { checkboxs: unknown; }; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: DefineComponent void; "update:modelValue": (...args: any[]) => void; }, string, PublicProps, Readonly & Readonly<{ onChange?: (...args: any[]) => any; "onUpdate:modelValue"?: (...args: any[]) => any; }>, { size: "small" | "default" | "large"; type: "checkbox" | "button"; options: Array; border: boolean; labelKey: string; valueKey: string; prefix: boolean | string | ((item: any) => string); hasCheckAll: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, { checkboxs: unknown; }, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };