import * as Mocha from 'mocha';
export declare function configure(mochaOpts: Mocha.MochaOptions, testOpts: ITestCoverOptions): void;
export declare function run(testsRoot: string, clb: any): any;
export interface ITestCoverOptions {
    /**
     * Relative path to the coverage config file with configuration
     * options for the test runner options.
     */
    coverConfig: string;
}
