import { kaba } from "../@types/kaba"; export declare class WebpackRunner { private buildConfig; private logger; private watchers; private resolveCallback?; /** * Constructs a new runner */ constructor(buildConfig: kaba.BuildConfig); /** * Runs the actual runner */ run(): Promise; /** * Callback on after the compilation has finished */ private onCompilationFinished; /** * Stops the runner */ stop(): void; /** * Writes the entry dependencies file */ private writeDependenciesFile; }