import type { McpSideEffects } from "./types.js"; export declare class McpSideEffectsWriter { private readonly filePath; constructor(filePath: string); recordMessageSent(params: { tool: string; provider: string; accountId?: string; to?: string; text: string; mediaUrl?: string; }): Promise; recordCronAdd(jobId?: string): Promise; recordHeartbeatReport(params: { anythingDone: boolean; summary?: string | null; }): Promise; private appendRecord; } export declare function readMcpSideEffects(filePath: string): Promise;