/// import { EventEmitter } from 'events'; import { IConsole } from './IConsole'; import { ConsoleOptions } from './ConsoleOptions'; export declare class Console extends EventEmitter implements IConsole { protected readonly options: T; protected readonly exe: string; protected readonly args: string[]; private readonly logger; private instance; protected constructor(options: T, exe: string, args: string[]); static create(options: T, exe: string, ...args: string[]): Console; start(): Promise; stop(): void; private shutdown; }