/** * herdctl jobs - List jobs with filtering and pagination * * Commands: * - herdctl jobs List recent jobs (last 20) * - herdctl jobs --agent Jobs for specific agent * - herdctl jobs --status running Filter by status * - herdctl jobs --limit 50 Custom limit * - herdctl jobs --json JSON output */ export interface JobsOptions { agent?: string; status?: string; limit?: number; json?: boolean; state?: string; config?: string; } /** * List jobs (herdctl jobs) */ export declare function jobsCommand(options: JobsOptions): Promise; //# sourceMappingURL=jobs.d.ts.map