import PipelineService from "./pipeline"; import APIClient from "../common/http"; import { Logger } from "../common/logger"; import ArtifactsService from "./artifacts"; export declare type CI = { pipeline: PipelineService; artifact: ArtifactsService; logger: Logger; }; export declare const init: (httpClient: APIClient, program: any) => Promise; declare const _default: { init: (httpClient: APIClient, program: any) => Promise; }; export default _default;