import type { ComponentContext } from "../../types/context";
import type { DeployJobDefinition, RollbackJobDefinition, StopJobDefinition } from "../../types/jobDefinition";
import type { CatladderJob } from "../../types/jobs";
export declare const createDeployementJobs: (context: ComponentContext, definitions: {
  deploy: DeployJobDefinition;
  stop?: StopJobDefinition;
  rollback?: RollbackJobDefinition;
}) => CatladderJob[];