import type { ComponentContext } from "../../../types/context";
import type { DeployConfigCloudRunJob } from "../../types/googleCloudRun";
export declare const getDeleteJobsScripts: (context: ComponentContext) => string[];
export declare const getJobCreateScripts: (context: ComponentContext) => string[];
export declare const getCloudRunJobsWithNames: (context: ComponentContext) => {
  fullJobName: import("../../..").StringOrBashExpression;
  job: DeployConfigCloudRunJob;
  jobName: string;
}[];