/** * Formatter for ido4 structured context comments. * * Produces machine-parseable, human-readable Markdown comments * with HTML comment markers for the context pipeline. */ export interface FormatContextOptions { transition: string; agent?: string; content: string; } /** * Format an ido4 structured context comment. */ export declare function formatIdo4ContextComment(options: FormatContextOptions): string; //# sourceMappingURL=context-comment-formatter.d.ts.map