/** * TUI pulse / health status components. * * @module */ /** @jsxImportSource @opentui/solid */ import type { RGBA } from "@opentui/core"; import type { ThemeColors, HealthState } from "../helpers.ts"; export declare function healthDisplay(h: HealthState | null, c: ThemeColors): { glyph: string; label: string; color: RGBA; glyphBold: boolean; labelBold: boolean; } | null; export declare function renderPulse(props: { c: ThemeColors; hd: ReturnType; active: number; limit: number; queued: number; showConcurrency: boolean; }): any; export declare function renderStaleHint(props: { c: ThemeColors; isStale: boolean; }): any; export declare function renderNoStateBody(props: { c: ThemeColors; show: boolean; }): any; //# sourceMappingURL=Pulse.d.ts.map