import { IWindowResizeEvent } from "../types/recordables.js"; import { IInterceptor } from "../types/interceptor.js"; import { RecordingContext } from "../recorder/RecordingContext.js"; export declare class WindowResizeInterceptor implements IInterceptor { private onEvent; private context; constructor(onEvent: (event: IWindowResizeEvent) => void, context: RecordingContext); start(): void; stop(): void; initial(): void; private handler; }