import type { ArtifactBundle } from "../io/artifacts.js"; import type { Ceiling } from "audit-tools/shared"; /** * Render the charter-clarification host prompt (Phase D). The tool has already run * the deterministic triangulation loop — partition → VOI-rank → risk-gate → split * by attention — and surfaces the top of the VOI queue here. The host's job is only * to relay each SYMMETRIC question to the user and record the answer (any charter * may move, including Stated; "leave open" is first-class), then write the answers * back. Nothing here anoints a side; the tool never asked "shall we fix the code?" * (design of record spec/conceptual-design-review-design.md §"The triangulation * loop"). Only reached at a `deep`+ ceiling WITH attention > 0 and ≥1 interactive * question; a shallow ceiling or zero attention runs autonomously with no host turn. */ export declare function renderCharterClarificationPrompt(bundle: ArtifactBundle, opts: { answersPath: string; continueCommand: string; ceiling: Ceiling; }): string; //# sourceMappingURL=charterClarificationPrompt.d.ts.map