import { SourceModule } from '@mochiapp/js';
import './core';
type ConstructorInitializer<T> = new () => T;
declare const runner: <T extends SourceModule>(constructor: ConstructorInitializer<T>) => T;
export default runner;
