/** * herdctl job - Show job details and logs * * Commands: * - herdctl job Show job details * - herdctl job --logs Show job output * - herdctl job --json JSON output */ export interface JobOptions { logs?: boolean; json?: boolean; state?: string; config?: string; } /** * Show job details (herdctl job) */ export declare function jobCommand(jobId: string, options: JobOptions): Promise; //# sourceMappingURL=job.d.ts.map