/// /** * @see https://mochajs.org/#root-hook-plugins * If you're using `mocha --watch` you will need to add * * before(() => logCapture.start()); * afterEach(() => logCapture.reset()); * after(() => logCapture.stop()); * */ export declare const mochaHooks: { before(): void; afterEach(this: Mocha.Context): void; after(): void; };