import { Node, Props } from './tree.vue'; export interface ItemProps { node: Node; itemProps: Props; isChild?: boolean; } declare function __VLS_template(): { default?(_: { node: Node; }): any; default?(_: any): any; }; declare const __VLS_component: import("vue").DefineComponent & Readonly<{}>, { node: Node; itemProps: Props; isChild: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const _default: __VLS_WithTemplateSlots>; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };