import { Tool } from '@modelcontextprotocol/sdk/types.js';
import { BaseToolHandler } from './base-handler.js';
import { LocalDebugEngine } from '../local-debug-engine.js';
import { DebugSession } from '../types.js';
export declare class InteractionHandler extends BaseToolHandler {
    private localEngine;
    tools: Tool[];
    constructor(localEngine: LocalDebugEngine);
    getTools(): Tool[];
    /**
     * Get session with persistent storage support
     */
    protected getSessionWithPersistence(sessionId: string, sessions: Map<string, any>): Promise<any>;
    handle(toolName: string, args: any, sessions: Map<string, DebugSession>): Promise<any>;
    private simulateUserAction;
    private takeScreenshot;
    /**
     * Perform memory-safe action using the MemorySafeActions class
     */
    private performMemorySafeAction;
}
//# sourceMappingURL=interaction-handler.d.ts.map