import type { LazyLoader, 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 TreeView: $$__sveltets_2_IsomorphicComponent<{ nodes: Array>; textField: string | GetText; style?: string; lazyLoader?: LazyLoader | null; activeNode?: any; class?: string; isVisible?: NodeVisibleFun; onchange?: OnNodeSelectionChange; onfocus?: ((event: FocusEvent) => void) | null; onblur?: ((event: FocusEvent) => void) | null; onContextMenu?: OnContextMenu; checkIsDirectory: CheckIsDirectory; version?: number | undefined; title?: string | undefined; }, { [evt: string]: CustomEvent; }, {}, { class: string; }, string>; type TreeView = InstanceType; export default TreeView;