/** * Forgen v1 — Inspect Renderer * * forgen inspect profile/rules/evidence/session 출력 생성. * Authoritative spec: docs/plans/2026-04-03-forgen-rule-renderer-spec.md §6 */ import type { Profile, Rule, Evidence, SessionEffectiveState } from '../store/types.js'; export declare function renderProfile(profile: Profile): string; export declare function renderRules(rules: Rule[]): string; export declare function renderEvidence(evidence: Evidence[]): string; export declare function renderSession(state: SessionEffectiveState): string;