/** * Specification protocol — thin wrapper delegating to the canonical pure validator. * * @task T4537 * @task T260 */ import { type ProtocolValidationResult } from '../../orchestration/protocol-validators.js'; /** Validate specification protocol for a task. */ export declare function validateSpecificationTask(taskId: string, opts: { strict?: boolean; specFile?: string; }): Promise; /** Validate specification protocol from a manifest file. */ export declare function checkSpecificationManifest(manifestFile: string, opts: { strict?: boolean; specFile?: string; }): Promise; //# sourceMappingURL=specification.d.ts.map