import type { WebSocket } from "ws"; import type { PtyViewEngine } from "../engines/pty-view-engine.js"; export declare const PTY_RESUME_DEADLINE_MS = 15000; interface AttachPtyWebSocketOptions { resumeDeadlineMs?: number; } /** Attach a snapshot-first, per-session PTY WebSocket. */ export declare function attachPtyWebSocket(ws: WebSocket, sessionId: string, engine: PtyViewEngine, options?: AttachPtyWebSocketOptions): void; export {}; //# sourceMappingURL=pty-ws.d.ts.map