import { getReplyFromConfig } from "../../auto-reply/reply.js"; import { loadConfig } from "../../config/config.js"; import { sendMessageWhatsApp } from "../outbound.js"; export declare function runWebHeartbeatOnce(opts: { cfg?: ReturnType; to: string; verbose?: boolean; replyResolver?: typeof getReplyFromConfig; sender?: typeof sendMessageWhatsApp; sessionId?: string; overrideBody?: string; dryRun?: boolean; }): Promise; export declare function resolveHeartbeatRecipients(cfg: ReturnType, opts?: { to?: string; all?: boolean; }): { recipients: string[]; source: string; };