import type { Sidebar } from './sidebar.types'; export interface Selection { lv0?: FeatureLike; lv1?: FeatureLike; lv2?: FeatureLike; } interface FeatureLike { code: string; label: string; items?: FeatureLike[]; } export declare const sidebar: import("svelte/store").Writable; export declare function updateSidebarData(data: string | Sidebar): void; export declare const isSidebarOpen: import("svelte/store").Writable; export declare function toggleSidebar(state?: boolean): void; export declare const selectedFeature: import("svelte/store").Writable; export declare function selectFeature(code?: string): void; export {}; //# sourceMappingURL=sidebar-service.d.ts.map