import { type DockerExecutionConfig } from "../execution/index.js"; import { RemoteTerminalManager } from "./RemoteTerminalManager.js"; import type { RemoteTerminalSummary } from "./types.js"; export declare function createRemoteTerminalManager(options: { cwd: string; docker?: DockerExecutionConfig; ownerId: string; onChange?: (terminals: readonly RemoteTerminalSummary[]) => void; }): RemoteTerminalManager;