/** * RecommendationSection Component * * Compact recommendation section for HomeView with horizontal cards. * * @since v1.66.2 */ import type React from 'react'; import type { Recommendation } from '../../../core/recommendations/recommendation-types.js'; import type { Tier } from '../../../core/types/auth.js'; export interface RecommendationSectionProps { /** Recommendations to display (top 3 shown) */ recommendations: Recommendation[]; /** Whether recommendations are loading */ loading?: boolean; /** User's subscription tier */ tier?: Tier; /** Maximum width */ maxWidth?: number; /** Called when user selects "See All" */ onSeeAll?: () => void; /** Called when user wants to refresh */ onRefresh?: () => void; } export declare function RecommendationSection({ recommendations, loading, maxWidth }: RecommendationSectionProps): React.ReactElement; //# sourceMappingURL=RecommendationSection.d.ts.map