/** * TaskLockValidation — Warns when a task is locked by another agent. * * Uses actor identity from ValidationContext to check if the current actor * is different from the lock holder. */ import type { ValidationStep, ValidationStepResult, ValidationContext } from '../types.js'; import type { IAgentService } from '../../agents/agent-service.js'; export declare class TaskLockValidation implements ValidationStep { private readonly agentService; readonly name = "TaskLockValidation"; constructor(agentService: IAgentService); validate(context: ValidationContext): Promise; } //# sourceMappingURL=task-lock-validation.d.ts.map