import type { PipelineType } from "../types";
import type { Config, PipelineTrigger } from "../types/config";
import type { ComponentContext } from "../types/context";
export type CreateComponentContextContext = {
  config: Config;
  componentName: string;
  env: string;
  pipelineType?: PipelineType;
  trigger?: PipelineTrigger;
};
export declare const createComponentContext: (ctx: CreateComponentContextContext) => Promise<ComponentContext>;