import { ProcessTabContext, SandboxOptions } from '../types'; /** * Process tabs manager. Responsible for opening, focusing and closing process and terminal tabs. */ export declare const useSandboxProcessTabs: (options: SandboxOptions) => { availableTerminals: import("vue").ComputedRef; close: (id: string) => void; kill: (id: string) => void; open: (id: string, label?: string, context?: ProcessTabContext) => Promise; restart: (id: string) => Promise; 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: ProcessTabContext) => ProcessTabContext) => void; };