import * as types from '../types'; declare type EventCallback = types.Callback; declare type ConstructorOptions = { attribute?: string; pageIndex: number; sendEvent: EventCallback; replayOnly: boolean; }; export declare class PageEventCollector { private _onDispose; private _sendEvent; replayOnly: boolean; constructor(options: ConstructorOptions); private installActionListeners; dispose(): void; } export {};