export default class Local {
    private volume;
    private build;
    constructor(servicePath: string, build: string);
    private run;
    private printCommand;
    static start(servicePath: string, build: string): Promise<void>;
    static stop(servicePath: string, build: string): Promise<void>;
}
