import type { JobRunsAllRequest, JobRunsAllResponse, JobRunsOneResponse, JobRunsTerminateResponse } from "../models.js"; import { BaseClient, type RequestOptions, type SDKOptions } from "../core.js"; export declare class JobRunsService extends BaseClient { constructor(options: SDKOptions); /** * Get Job Runs */ all(request: JobRunsAllRequest, options?: RequestOptions): Promise; /** * Get Job Run */ one(projectName: string, jobId: string, jobRunId: string, options?: RequestOptions): Promise; /** * Terminate Job Run */ terminate(projectName: string, jobId: string, jobRunId: string, options?: RequestOptions): Promise; } //# sourceMappingURL=jobRuns.d.ts.map