/**
 * AI Analysis Prompts for comprehensive project analysis
 * These prompts are used by tools to generate analysis requests for AI agents
 */
import { ProjectStructure } from '../utils/file-system.js';
/**
 * Generate analysis context for AI agent based on project structure
 *
 * @param projectStructure - The analyzed project structure
 * @returns JSON string containing comprehensive project analysis context
 */
export declare function generateAnalysisContext(projectStructure: ProjectStructure): string;
/**
 * Technology detection prompt for AI agent
 */
export declare function generateTechnologyDetectionPrompt(projectContext: string, packageJsonContent?: string): string;
/**
 * Pattern detection prompt for AI agent
 */
export declare function generatePatternDetectionPrompt(projectContext: string): string;
/**
 * Comprehensive project analysis prompt
 */
export declare function generateComprehensiveAnalysisPrompt(projectContext: string, packageJsonContent?: string, additionalFiles?: {
    [filename: string]: string;
}): string;
//# sourceMappingURL=analysis-prompts.d.ts.map