export type WidgetType = | "cpu" | "memory" | "disk" | "network" | "uptime" | "processes" | "system"; export interface StatsConfig { enabledWidgets: WidgetType[]; } export const DEFAULT_STATS_CONFIG: StatsConfig = { enabledWidgets: ["cpu", "memory", "disk", "network", "uptime", "system"], };