import type { FafData } from '../core/types.js'; /** * Render GEMINI.md content from .faf data (+ repo enrichment at export). * * Matches Gemini CLI's own GEMINI.md convention (hierarchical, concatenation- * friendly, `@file.md`-importable): commands, key files, and confirmation- * required actions — not the AGENTS.md BETTER ladder, which is a different * spec for a different reader. */ export declare function renderGeminiMd(data: FafData): string; /** Write GEMINI.md — non-destructive: injects/updates the faf block, preserves the rest. */ export declare function writeGeminiMd(dir: string, data: FafData): void;