/** * SystemHealth blocks (768w.16.8.2) — presentational, bring-your-own-data cards * that bubble up the health of a data-driven tenant app: pipeline status, source * freshness, delivery/schedule adherence, and a needs-attention queue. A tenant * dashboard widget fetches the data and hands each block plain props; the blocks * own the tone roll-up + layout so the app wrapper stays thin. */ export { HealthCard, HealthDot, HealthBadge } from './HealthCard' export type { HealthCardProps } from './HealthCard' export { HEALTH_TONE, worstStatus } from './health-status' export type { HealthStatus, HealthTone } from './health-status' export { PipelineHealth } from './PipelineHealth' export type { PipelineHealthProps, PipelineStage } from './PipelineHealth' export { SourceFreshness } from './SourceFreshness' export type { SourceFreshnessProps, SourceFreshnessItem } from './SourceFreshness' export { DeliveryHealth } from './DeliveryHealth' export type { DeliveryHealthProps, DeliveryItem, DeliveryState } from './DeliveryHealth' export { AttentionFeed } from './AttentionFeed' export type { AttentionFeedProps, AttentionItem } from './AttentionFeed'