import type { FafData } from '../core/types.js'; /** * Author a BETTER-shaped AGENTS.md from .faf data (+ repo enrichment at export). * * Deterministic projection from curated TRUTH — facts, not hallucinated prose * (Gloaguen: LLM freewrite hurts). Sections: orientation · setup · verify · * map · conventions · three-tier guardrails · DoD · when stuck · security · * commit. Human Context (who/why marketing) is intentionally omitted — that * belongs in README / project.faf, not agent ops. * * Design: BETTER guide + hand exemplar (faf-cli AGENTS.md) + agents-md-facts. */ export declare function renderAgentsMd(data: FafData): string; /** Write AGENTS.md — non-destructive: injects/updates the faf block, preserves the rest. */ export declare function writeAgentsMd(dir: string, data: FafData): void;