import * as Mocha from 'mocha'; import { MochaUiEsmOptions } from './mochaUiEsmOptions.js'; /** * Extracts test definitions from an ESM module and adds them to a Mocha suite. * * This function uses `esm-test-parser` to identify tests, groups, and built-in hooks * exported from the module and registers them with Mocha. * * @param rootSuite - The top-level Mocha suite to add tests to. * @param options - Configuration options for the ESM UI. * @param moduleToParse - The ESM module object to extract tests from. */ export declare function getTestsFromEsmModule(rootSuite: Mocha.Suite, options: MochaUiEsmOptions, moduleToParse: any): void; //# sourceMappingURL=getTestsFromEsmModule.d.ts.map