import type { ICiBuild, ICiBuildOutputConfig } from './domain'; export declare class CIReader { static get MAX_LINES(): number; static getBuilds(repoType: string, projectKey: string, repoSlug: string): PromiseLike; static getRunningBuilds(repoType: string, projectKey: string, repoSlug: string): PromiseLike; static getBuildOutput(buildId: string, start?: number): PromiseLike; }