/** * Creative Pattern Library - Suggests improvements based on proven success patterns */ export declare class CreativePatternLibrary { /** * Analyze JSX and suggest improvements based on successful patterns */ analyzeAndSuggestPatterns(jsx: string, projectName: string): { currentAnalysis: any; suggestions: PatternSuggestion[]; priorityFixes: PatternSuggestion[]; }; /** * Analyze current state vs successful patterns */ private analyzeCurrentState; /** * Generate specific suggestions based on successful patterns */ private generateSuggestions; private extractFontSizes; private extractContainerSizes; private countAnimations; private analyzeBackgroundComplexity; private analyzeContentRichness; private calculateScaleScore; private calculateMotionScore; private calculateContentScore; } interface PatternSuggestion { pattern: string; issue: string; suggestion: string; implementation: string; impact: 'low' | 'medium' | 'high' | 'dramatic'; priority: number; } /** * Main export for MCP integration */ export declare function analyzeWithProvenPatterns(jsx: string, projectName: string): Promise<{ currentAnalysis: any; suggestions: PatternSuggestion[]; priorityFixes: PatternSuggestion[]; }>; /** * Get specific background enhancement based on GitHub_4 success */ export declare function getBackgroundEnhancement(currentJSX: string): { shouldEnhance: boolean; enhancement: string; reasoning: string; }; export {}; //# sourceMappingURL=creative-pattern-library.d.ts.map