import { EditorTab } from "./editor-tab.model.js";
export interface EditorTabsInfo {
    editorId: number;
    tabs: EditorTab[];
    activeTab: EditorTab | -1;
    hm: HashMap;
}
interface HashMap {
    [key: string]: NestedHashMap;
}
interface NestedHashMap {
    [key: string]: string;
}
export {};
//# sourceMappingURL=editor-tab-info.model.d.ts.map