/** * Deterministic RLM report synthesis: turns the accumulated notebook (plus an * optional model-provided summary) into a Markdown research report. */ import type { NotebookDocument } from "../edit/notebook"; export interface RlmReportInput { title: string; summary?: string; notebook: NotebookDocument; dataPath?: string | null; generatedAt?: string; maxOutputChars?: number; } export declare function synthesizeRlmReport(input: RlmReportInput): string;