import { Tool } from '@modelcontextprotocol/sdk/types.js';
import { LocalDebugEngine } from '../local-debug-engine.js';
/**
 * Handler for automatic problem detection
 * Identifies common web app issues like hydration errors, large bundles, poor caching, etc.
 */
export declare class ProblemHandler {
    private localEngine;
    tools: Tool[];
    constructor(localEngine: LocalDebugEngine);
    handle(toolName: string, args: any, sessions: Map<string, any>): Promise<any>;
    private formatProblem;
}
//# sourceMappingURL=problem-handler.d.ts.map