import { Tool } from '@modelcontextprotocol/sdk/types.js';
import { BaseToolHandler } from '../base-handler.js';
import { NextJSDebugEngineEnhanced } from '../../nextjs-debug-engine-enhanced-modular.js';
/**
 * Handler for Next.js core information tools (page info, config, app router)
 */
export declare class NextJSCoreInfoHandler extends BaseToolHandler {
    private nextjsEngine;
    constructor(nextjsEngine: NextJSDebugEngineEnhanced);
    tools: Tool[];
    handle(toolName: string, args: any, sessions: Map<string, any>): Promise<any>;
    private validateNextJSSession;
    private getPageInfo;
    private getConfig;
    private addImageConfig;
    private getConfigRecommendations;
    private getAppRouterInfo;
    private getAppRouterRecommendations;
}
//# sourceMappingURL=nextjs-core-info-handler.d.ts.map