/// <reference types="node" />
import * as cp from 'child_process';
export declare class ServerRunnerDelegate {
    static run(executable: string, port: string, startTimeout: number, out: (msg: string) => void): Promise<cp.ChildProcess>;
}
