import type { VerifySummary } from './types.js'; export interface VerifyContext { changeDir: string; yaml: Record; projectRoot?: string; includeSummary?: boolean; } /** * Resolve a change's verify state in this order: * 1. `yaml.verify_result` (or `verifyResult`) if it parses to a known value. * 2. Presence of a verify report: explicit `verification_report` path first, * falling back to `.comet/verify-result.md`. * 3. Heuristic: if a report exists but the yaml is silent, assume `fail` — * the report wouldn't usually exist for a passing run that hasn't been * recorded in the yaml. * 4. Otherwise `unknown` / `pending` per the report's absence. */ export declare function resolveVerify(ctx: VerifyContext): Promise; //# sourceMappingURL=verify-parser.d.ts.map