/** * ContainerAssignmentValidation — Generic parameterized container assignment check. * * Replaces: WaveAssignmentValidation (when used in profile-driven pipelines). * * Param: container type ID (e.g., 'wave'). * Checks that the task has a value in containers[containerType]. */ import type { ValidationStep, ValidationStepResult, ValidationContext } from '../types.js'; export declare class ContainerAssignmentValidation implements ValidationStep { readonly name = "ContainerAssignmentValidation"; private readonly containerType; constructor(param: string); validate(context: ValidationContext): Promise; } //# sourceMappingURL=container-assignment-validation.d.ts.map