/**
 * Copyright Super iPaaS Integration LLC, an IBM Company 2024
 */
import { EditorTabsInfo } from "../../common/models/editor-tab-info.model.js";
export interface IStudioEditorIndexedDbHandler {
    setLastOpenedTabs(editorTabsInfo: EditorTabsInfo): Promise<void>;
    getLastOpenedTabs(): Promise<EditorTabsInfo | void>;
    deleteLastOpenedTabs(): Promise<void>;
}
//# sourceMappingURL=editor-indexed-db.interface.d.ts.map