export type OpsMetric = { id: string; label: string; value: string; trend?: string; status?: "healthy" | "warning" | "critical"; }; export type OpsAlert = { id: string; title: string; severity: "low" | "medium" | "high"; status: "open" | "acknowledged" | "resolved"; updated: string; }; export type OpsLogEntry = { id: string; timestamp: string; level: "info" | "warning" | "error"; message: string; service: string; }; export type OpsConsoleOptions = { selector: string; title?: string; ariaLabel?: string; metrics: OpsMetric[]; alerts: OpsAlert[]; logs: OpsLogEntry[]; showMetrics?: boolean; showAlerts?: boolean; showLogs?: boolean; onAlertSelect?: (alert: OpsAlert) => void; onLogSelect?: (log: OpsLogEntry) => void; hydrate?: boolean; }; //# sourceMappingURL=OpsConsole.types.d.ts.map