import type { EventEmitter } from 'events';

/**
 * @private
 */
export interface CucumberFormatterOptions {
    colorFns: any;
    cwd: any;
    eventDataCollector: any;
    eventBroadcaster: EventEmitter;
    log: typeof process.stdout.write;
    snippetBuilder: any;
    stream: any;
    supportCodeLibrary: any;
}
