import Mocha from 'mocha';
import { MochapackMochaOptions } from '../../../cli/argsParser/optionsFromParsedArgs/types';
/**
 * Initializes an instance of Mocha on behalf of the user with their provided
 *   options
 */
declare const initMocha: (options: MochapackMochaOptions, cwd: string) => Mocha;
export default initMocha;
