import { EditorTabContext, SandboxOptions } from '../types'; /** * Editor tabs manager. Responsible for opening, focusing and closing editor tabs. */ export declare const useSandboxEditorTabs: (options: SandboxOptions) => { open: (id: string, label?: string, context?: EditorTabContext) => void; close: (id: string) => void; current: import("vue").ComputedRef | undefined>; findTab: (id: string) => import("../types").Tab | undefined; findTabIndex: (id: string) => number; tabs: import("vue").ComputedRef[]>; updateContext: (id: string, setter: (ctx: EditorTabContext) => EditorTabContext) => void; };