/** Sandbox capability API routes: status, exec, browser, screen, audio, computer use. */ import type { IncomingMessage, ServerResponse } from "node:http"; import type { RemoteSigningService } from "../services/remote-signing-service"; import type { SandboxManager } from "../services/sandbox-manager"; interface SandboxRouteState { sandboxManager: SandboxManager | null; signingService?: RemoteSigningService | null; } /** Returns `true` if handled, `false` to fall through. */ export declare function handleSandboxRoute(req: IncomingMessage, res: ServerResponse, pathname: string, method: string, state: SandboxRouteState): Promise; export {}; //# sourceMappingURL=sandbox-routes.d.ts.map