import { EventEmitter } from "events"; import * as configuration from "../configuration/index.js"; import * as events from "../events/index.js"; import * as command from "./index.js"; /** executes "text-runner run", prints everything, returns the number of errors encountered */ export declare class Run implements command.Command { emitter: EventEmitter; userConfig: configuration.APIData; constructor(userConfig: configuration.APIData); emit(name: events.Name, payload: events.Args): void; execute(): Promise; on(name: events.Name, handler: events.Handler): this; } //# sourceMappingURL=run.d.ts.map