import type { Heartbeat } from "./types.js"; export declare function writeHeartbeat(path: string, hb: Heartbeat): void; export declare function readHeartbeat(path: string): Heartbeat | undefined; export declare function isHeartbeatStale(hb: Heartbeat | undefined, now?: number, maxAgeMs?: number): boolean;