import { Tool } from '@modelcontextprotocol/sdk/types.js';
import { BaseToolHandler } from '../base-handler.js';
import { LocalDebugEngine } from '../../local-debug-engine.js';
import { FlutterQuantumDebugger } from '../../flutter-quantum-debugger.js';
/**
 * Handler for Flutter core information and configuration tools
 */
export declare class FlutterCoreInfoHandler extends BaseToolHandler {
    private localEngine;
    private quantumDebugger;
    constructor(localEngine: LocalDebugEngine, quantumDebugger: FlutterQuantumDebugger);
    tools: Tool[];
    handle(toolName: string, args: any, sessions: Map<string, any>): Promise<any>;
    private getFlutterConfig;
    private getFlutterDiagnostics;
    private getFlutterBrowserCompatibility;
    private getFlutterHealthCheck;
}
//# sourceMappingURL=flutter-core-info-handler.d.ts.map