import type { IPipelineStep } from '../pipeline-step';
import type { Pipeline } from './pipeline';
/**
 * Given a set of {@link IPipelineStep|steps} with their dependencies, this function verifies all requirements of {@link createPipeline}.
 */
export declare function verifyAndBuildPipeline(steps: readonly IPipelineStep[]): Pipeline;
