import { kaba } from "../@types/kaba"; export declare class SassRunner { private buildConfig; private cliConfig; private compiler?; /** * Constructs a new runner */ constructor(fullBuildConfig: kaba.BuildConfig, cliConfig: kaba.CliConfig); /** * Runs the actual runner * * @return {Promise} whether the build was successful and error-free */ run(): Promise; /** * Stops the runner */ stop(): void; }