import { IRecordable } from "../types/recordables.js"; import { RecordingContext } from "../recorder/RecordingContext.js"; export declare class Interceptors { private onEvent; private context; constructor(onEvent: (event: IRecordable) => void, context: RecordingContext); private interceptors; start(): void; stop(): void; private initialize; }