import type { Message } from "@kenkaiiii/gg-ai"; export interface VerificationCommandClassification { accepted: boolean; /** False for ordinary shell work that was never plausibly a verification attempt. */ candidate: boolean; reason: string; } export interface VerificationEvidence { command: string; status: "passed" | "failed" | "rejected"; reason: string; } /** Fail-closed semantic classifier: every shell segment must be a bounded check. */ export declare function classifyVerificationCommand(command: string): VerificationCommandClassification; /** Extract harness-owned evidence from completed bash calls in a transcript. */ export declare function collectVerificationEvidence(messages: readonly Message[]): VerificationEvidence[]; //# sourceMappingURL=verification-evidence.d.ts.map