/**
 * Framework Detection System v13 - Auto-detect project stack and optimize defaults
 * PRODUCTION-READY with zero manual configuration!
 */
export interface FrameworkConfig {
    name: string;
    displayName: string;
    patterns: string[];
    excludes: string[];
    minChunkSize: number;
    syncStrategy: 'incremental' | 'full';
    guidance: {
        architecture: string;
        bestPractices: string;
        commonIssues: string;
    };
}
/**
 * Detect the framework of a project and return optimized configuration
 */
export declare function detectFramework(projectPath: string): FrameworkConfig;
/**
 * Get framework-specific sync recommendations
 */
export declare function getSyncRecommendations(framework: FrameworkConfig): string;
//# sourceMappingURL=frameworkDetection.d.ts.map