/** * Runtime attestation (ADR 0005 H9). Declares the implementation status * of each runtime export in this module. See CONTRIBUTING.md ยง Module * attestations for the category definitions and the convention for * updating these when sync or rebrand changes the surface. */ export declare const MODULE_ATTESTATIONS: { readonly formatAgentInternalEventsForPrompt: "live"; }; export type AgentInternalEventType = "task_completion"; export type AgentTaskCompletionInternalEvent = { type: "task_completion"; source: "subagent" | "cron"; childSessionKey: string; childSessionId?: string; announceType: string; taskLabel: string; status: "ok" | "timeout" | "error" | "unknown"; statusLabel: string; result: string; statsLine?: string; replyInstruction: string; }; export type AgentInternalEvent = AgentTaskCompletionInternalEvent; export declare function formatAgentInternalEventsForPrompt(events?: AgentInternalEvent[]): string;