type IndicatorHealth = { readonly visible: boolean; readonly reason: string; readonly ageMinutes: number; }; declare const readIndicatorHealth: (now?: number) => Promise; declare const visibilityLabel: (registered: boolean, health: IndicatorHealth | null) => string; export { readIndicatorHealth, visibilityLabel };