export declare const commandTriggerCronjobGeneral: import("../../../core").CommandDef<{
  readonly namespace: {
    readonly type: "string";
    readonly message: "kubernetes namespace";
    readonly positional: true;
  };
  readonly jobName: {
    readonly type: "string";
    readonly message: "Which cronjob? 🤔";
    readonly choices: (ctx: any) => Promise<string[]>;
  };
}>;
export declare const commandTriggerCronjobProject: import("../../../core").CommandDef<{
  readonly envComponent: {
    readonly type: "string";
    readonly message: "environment:component";
    readonly positional: true;
    readonly choices: () => Promise<string[]>;
  };
  readonly jobName: {
    readonly type: "string";
    readonly message: "Which cronjob? 🤔";
    readonly choices: (ctx: any) => Promise<string[]>;
  };
}>;