import { Refiner } from '../refiner/main.js'; import { Emitter } from './emitter.js'; import { Group } from './group/main.js'; import { Suite } from './suite/main.js'; import { Test } from './test/main.js'; /** * Create a new instance of the Test */ export declare function createTest(title: string, emitter: Emitter, refiner: Refiner, debuggingError: Error, options: { suite: Suite; group?: Group; file: string; }): Test; /** * Create a new instance of the Group */ export declare function createTestGroup(title: string, emitter: Emitter, refiner: Refiner, options: { group?: Group; suite: Suite; file: string; }): Group;