import type { GitLabClient } from '../client.js'; import type { ListPipelineJobsParams, GetJobLogsParams, GetJobTraceParams } from '../types.js'; export declare class JobHandlers { private client; constructor(client: GitLabClient); listPipelineJobs(args: ListPipelineJobsParams): Promise<{ content: { type: string; text: string; }[]; }>; getJobLogs(args: GetJobLogsParams): Promise<{ content: { type: string; text: any; }[]; }>; getJobTrace(args: GetJobTraceParams): Promise<{ content: { type: string; text: string; }[]; isError?: undefined; } | { content: { type: string; text: string; }[]; isError: boolean; }>; } //# sourceMappingURL=jobs.d.ts.map