import { IConsoleCapture } from '../../domain/interfaces/IConsoleCapture'; import { LogEntry } from '../../domain/types'; export declare class ConsoleCapture implements IConsoleCapture { private originalMethods; private callback; private isActive; start(callback: (entry: LogEntry) => void): void; stop(): void; captureError(error: Error): LogEntry; private patchConsole; private restoreConsole; private setupErrorHandlers; private removeErrorHandlers; private handleError; private handleRejection; } //# sourceMappingURL=ConsoleCapture.d.ts.map