export type SlaStatus = "healthy" | "warning" | "critical"; export type SlaMetric = { id: string; label: string; value: string; trend?: string; status?: SlaStatus; }; export type SlaUptimePoint = { label: string; value: number; }; export type SlaIncident = { id: string; title: string; started: string; service: string; status: SlaStatus; impact?: string; }; export type SLADashboardOptions = { selector: string; title?: string; metrics: SlaMetric[]; uptime: SlaUptimePoint[]; incidents: SlaIncident[]; showCharts?: boolean; showIncidents?: boolean; onIncidentSelect?: (incident: SlaIncident) => void; hydrate?: boolean; }; //# sourceMappingURL=SLADashboard.types.d.ts.map