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