import { RecordingContext } from "../recorder/RecordingContext.js"; import { IInterceptor } from "../types/interceptor.js"; import { ILogEvent } from "../types/recordables.js"; export declare class LogInterceptor implements IInterceptor { private onEvent; private context; private active; constructor(onEvent: (event: ILogEvent) => void, context: RecordingContext); start(): void; stop(): void; private hook; private createConsoleImplementation; }