import type { ComponentContext, PipelineType } from "../types";
import type { Config, PipelineTrigger } from "../types/config";
export type CreateAllComponentsContextProps = {
  config: Config;
  trigger: PipelineTrigger;
  pipelineType: PipelineType;
};
export declare const createAllComponentsContext: ({
  config,
  trigger,
  pipelineType
}: CreateAllComponentsContextProps) => Promise<Array<ComponentContext>>;