/** * HomeView Component * * Dashboard with status cards (Server Status, Updates) and quick actions grid. * Uses Panel components for visual structure. Responsive side-by-side at >= 120 cols. * * @since v2.7.12 - Redesigned with Panel cards and grid layout */ import type React from 'react'; import type { Tier } from '../../core/types/auth.js'; export interface HomeViewProps { prodPluginCount: number; testPluginCount: number; updateCount: number; downloadableCount?: number; manualActionCount?: number; loading?: boolean; tier?: Tier; } export declare function HomeView({ prodPluginCount, testPluginCount, updateCount, downloadableCount, manualActionCount, loading, tier }: HomeViewProps): React.ReactElement; //# sourceMappingURL=HomeView.d.ts.map