/**
 * Wraps `mainFn` and starts the test runner if not already started.
 * By calling this in your test files, it allows the test file to be directly executed
 * via `node file.test.js`. When the runner is already active, this function will be a no
 * op.
 *
 * @since 0.1.0
 *
 * @param {ImportMeta} meta
 * @returns {void}
 */
export function mainTestFn(meta: ImportMeta): void;
