import type { ComponentAnalysisResult, GenerateComponentInput } from './index.js'; /** * Formats the component generation recommendation for AI/developer. * * @param analysis - Component analysis result with REUSE/EXTEND/CREATE decision * @param input - Original generate-component input (component name, etc.) * @returns Formatted markdown string with recommendation, key differences, suggested approach, and next steps */ export declare function formatRecommendation(analysis: ComponentAnalysisResult, input: GenerateComponentInput): string;