import { OsAgentHandler } from './tools/os-agent-tools';
import { ClaudeAgent } from './claude-agent';
import { ExecutionRuntime } from '../../../execution/execution-runtime';
export declare class AskUIAgent extends ClaudeAgent {
    private osAgentHandler;
    private executionRuntime;
    private runtime;
    constructor(executionRuntime: ExecutionRuntime);
    isConnected(): boolean;
    initializeOsAgentHandler(): Promise<void>;
    getOsAgentHandler(): OsAgentHandler;
    configureAgent(): Promise<void>;
    private static DesktopSystemPrompt;
    private static AndroidSystemPrompt;
}
