/** * Renderer for `research` artifacts. * * Extracts: title (H1), assumptions count, files-explored count, key findings count, * and first 3 lines of the executive summary. Caps output at 500 lines. * * Pure function — no I/O. Mechanisms must preload file content into artifact.content. * * Sprint 11 — colocated in renderers/ per mechanisms/ precedent. */ /** * Render a `research` artifact as markdown. */ export declare function renderResearch(artifact: unknown): string; //# sourceMappingURL=research.d.ts.map