export declare const commandCiJobOpen: import("../../core").CommandDef<{
  readonly jobName: {
    readonly type: "string";
    readonly message: "Which job? 🤔";
    readonly choices: (ctx: any) => Promise<string[]>;
  };
}>;
export declare const commandCiJobLog: import("../../core").CommandDef<{
  readonly jobName: {
    readonly type: "string";
    readonly message: "Which job? 🤔";
    readonly choices: (ctx: any) => Promise<string[]>;
  };
}>;