interface FileBrowserState { isExpanded: boolean; selectedFile: string | null; isViewerOpen: boolean; expandedDirs: Set; toggleSidebar: () => void; expandSidebar: () => void; collapseSidebar: () => void; openFile: (path: string) => void; revealFile: (path: string) => void; closeViewer: () => void; toggleDir: (path: string) => void; } export declare const useFileBrowserStore: import("zustand").UseBoundStore>; export {}; //# sourceMappingURL=fileBrowserStore.d.ts.map