import { BaseService } from '../infrastructure'; import { RequestOptions } from '../infrastructure/RequestHelper'; declare type RunnerId = string | number; interface RunnersOptions { projectId?: ProjectId; } declare class Runners extends BaseService { all({ projectId, ...options }?: RunnersOptions): Promise; allOwned(options: RequestOptions): Promise; edit(runnerId: RunnerId, options: RequestOptions): Promise; enable(projectId: ProjectId, runnerId: RunnerId): Promise; disable(projectId: ProjectId, runnerId: RunnerId): Promise; jobs(runnerId: RunnerId): Promise; remove(runnerId: RunnerId): Promise; show(runnerId: RunnerId): Promise; } export default Runners;