import { ListProps, ListSlots } from './types'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Slots = ListSlots; type __VLS_Props = ListProps; type __VLS_ModelProps = { modelValue?: string | number; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_base: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (value: string | number) => any; dragStart: (data: any) => any; dragEnd: (data: any) => any; }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined; onDragStart?: ((data: any) => any) | undefined; onDragEnd?: ((data: any) => any) | undefined; }>, { border: boolean; selected: boolean; selectKey: string; }, {}, {}, {}, 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; }; };