import { Rivendell } from './Rivendell'; import BuildState = Rivendell.BuildState; export type ProgressCallback = (state: BuildState) => any; export type ErrorList = string[]; export declare function watchBuild(id: number, progressCallback: ProgressCallback, pollInterval?: number): Promise;