import type { TreeLazyLoader, NodeVisibleFun, OnNodeSelectionChange } from "./Types"; import type { OnContextMenu } from "../context-menu/ContextMenuItem"; import type { CheckIsDirectory, GetText, ITreeNode } from "../lib/TreeNodes"; interface $$__sveltets_2_IsomorphicComponent = any, Events extends Record = any, Slots extends Record = any, Exports = {}, Bindings = string> { new (options: import('svelte').ComponentConstructorOptions): import('svelte').SvelteComponent & { $$bindings?: Bindings; } & Exports; (internal: unknown, props: Props & { $$events?: Events; $$slots?: Slots; }): Exports & { $set?: any; $on?: any; }; z_$$bindings?: Bindings; } declare const TreeNodeView: $$__sveltets_2_IsomorphicComponent<{ node: ITreeNode; textField: string | GetText; lazyLoader: TreeLazyLoader | null; activeNode: any; isVisible: NodeVisibleFun; onContextMenu: OnContextMenu; onNodeSelectionChange: OnNodeSelectionChange; checkIsDirectory: CheckIsDirectory>; }, { [evt: string]: CustomEvent; }, {}, {}, string>; type TreeNodeView = InstanceType; export default TreeNodeView;