/** * EmptyState Component * * Centered empty/error state with icon, title, description, and action hints. * Replaces inconsistent plain-text empty states across all views. * * @since v2.7.10 - New unified empty state component */ import type React from 'react'; export type EmptyStateIcon = 'search' | 'plugin' | 'server' | 'update' | 'log' | 'health' | 'empty'; export interface EmptyStateAction { key: string; description: string; } export interface EmptyStateProps { icon?: EmptyStateIcon; title: string; description?: string; action?: EmptyStateAction; altActions?: EmptyStateAction[]; } export declare function EmptyState({ icon, title, description, action, altActions }: EmptyStateProps): React.ReactElement; //# sourceMappingURL=EmptyState.d.ts.map