import { Readable } from "svelte/store"; import { LitElement } from "lit"; import "@shoelace-style/shoelace/dist/components/drawer/drawer.js"; import "./elements/visualize-store-tree.js"; type TreeNode = { name: string; children?: Array; }; export declare function buildTree(store: Readable): TreeNode; export declare class DebugStore extends LitElement { store: Readable; render(): import("lit-html").TemplateResult<1>; static styles: import("lit").CSSResult; } export declare function debugStore(store: Readable): void; export {}; //# sourceMappingURL=debug-store.d.ts.map