/** * Validation protocol — thin wrapper delegating to the canonical pure validator. * * Renamed from validation-protocol.ts in T260. The validation stage runs * static analysis, type checking, and pre-test quality gates. It is the * first half of the IVT loop (Implement → Validate → Test); the validator * here only verifies that a validation run produced a proper manifest * entry — runtime gate enforcement is in the lifecycle state machine. * * @task T4804 * @task T260 — drop -protocol suffix, delegate to orchestration validator */ import { type ProtocolValidationResult, type ValidationStageOptions } from '../../orchestration/protocol-validators.js'; /** Validate validation-stage protocol for a task. */ export declare function validateValidationTask(taskId: string, opts: { strict?: boolean; } & ValidationStageOptions): Promise; /** Validate validation-stage protocol from a manifest file. */ export declare function checkValidationManifest(manifestFile: string, opts: { strict?: boolean; } & ValidationStageOptions): Promise; //# sourceMappingURL=validation.d.ts.map