/** * CommandHandler — Processes incoming CLI commands and returns structured results. * * Receives parsed Command objects from the WebSocket server, looks up * elements in the registry, executes actions via ActionExecutor, and * returns CommandResponse objects. */ import type { Command, CommandResponse, AgentKitConfig } from './types'; export declare class CommandHandler { private config; constructor(config: AgentKitConfig); /** * Process a command and return a response. */ handle(command: Command): Promise; private handleList; private handleState; private handleTap; private handleToggle; private handleSetValue; private handleSwipe; private handleLongPress; private handleType; private handleClear; private handleScroll; private handleRead; private handleBack; private handleWait; private handleFind; private sleep; } //# sourceMappingURL=CommandHandler.d.ts.map