/** * Screenshot Command Handlers * * Handles screenshot-related commands from the server. */ import type { RequestScreenshotCommand, ScreenshotCommand, SweetlinkResponse } from '../../types.js'; /** * Handle basic screenshot command */ export declare function handleScreenshot(command: ScreenshotCommand): Promise; /** * Handle request-screenshot command (from CLI/Agent) * This version sends the response directly over WebSocket */ export declare function handleRequestScreenshot(command: RequestScreenshotCommand, ws: WebSocket | null): Promise; //# sourceMappingURL=screenshot.d.ts.map