import type { ProjectReadBoundary } from "../io/bootstrap-write-boundary.js"; import { type ProjectReadSnapshot } from "../io/project-read-snapshot.js"; import type { ClosureVerification } from "./workflow-closure-verification.js"; export type ExecutionEvidenceVerification = { readonly evidenceRef?: string; readonly observed: boolean; readonly reason: string; readonly verification: Exclude; }; export declare function hasVerificationCommandMention(text: string): boolean; export declare function hasVerificationSuccessText(text: string): boolean; export declare function readExecutionEvidenceVerification(projectDir: string, boundary?: ProjectReadBoundary, snapshot?: ProjectReadSnapshot): ExecutionEvidenceVerification;