import { BotGuardConfig } from '../config'; export interface FlushSpoolArgs { apiUrl?: string; shieldId?: string; shieldKey?: string; heartbeat?: string; } /** * `fullcourtdefense flush-spool` — drain the local telemetry spool to the backend * and send a heartbeat. Normally invoked detached by the hook; can also be run * from cron/launchd/Task Scheduler for steady liveness on idle machines. */ export declare function flushSpoolCommand(args: FlushSpoolArgs, config: BotGuardConfig): Promise;