/**
 * Test Debugging Helper Handler
 *
 * Provides specialized tools for debugging test failures, particularly for:
 * - Registration flow redirects
 * - LiveView navigation tracking
 * - Form submission verification
 * - Visual regression timing
 *
 * Note: These tools require an existing debug session to be created first
 * using inject_debugging tool.
 */
import { BaseToolHandler } from './base-handler.js';
import { Tool } from '@modelcontextprotocol/sdk/types.js';
import { DebugSession } from '../types.js';
export declare class TestDebuggingHelperHandler extends BaseToolHandler {
    tools: Tool[];
    handle(toolName: string, args: any, sessions: Map<string, DebugSession>): Promise<any>;
    private verifyRegistrationFlow;
    private diagnoseLiveViewDeath;
    private captureWithVisualStability;
    private debugFailedTest;
    private waitForCondition;
    private generateRegistrationFlowRecommendations;
    private analyzeLiveViewIssues;
    private generateTestFailureSummary;
    private generateTestDebuggingRecommendations;
}
//# sourceMappingURL=test-debugging-helper-handler.d.ts.map