/** * ServersView Component * * Panel-wrapped server comparison with grouped sections (In Sync, Mismatch, Prod Only, Test Only), * accent bar selection, Scrollbar, EmptyState, KeyHintsBar. * * @since v2.7.15 - Visual overhaul with grouped comparison sections */ import type React from 'react'; import type { Tier } from '../../core/types/auth.js'; import { type PluginComparison, type ServerStats } from '../hooks/index.js'; export interface ServersViewProps { comparisons: PluginComparison[]; stats: ServerStats; loading?: boolean; selectedIndex?: number; onSelect?: (comparison: PluginComparison) => void; onRefresh?: () => void; inputEnabled?: boolean; maxHeight?: number; terminalWidth?: number; tier?: Tier; } export declare function ServersView({ comparisons, stats, loading, onSelect, inputEnabled, maxHeight, terminalWidth, tier }: ServersViewProps): React.ReactElement; //# sourceMappingURL=ServersView.d.ts.map