import record from './record'; import { Replayer } from './replay'; import canvasMutation from './replay/canvas'; import { _mirror } from './utils'; import * as utils from './utils'; export { EventType, IncrementalSource, MouseInteractions, ReplayerEvents, type eventWithTime, } from '@rrweb/types'; export type { recordOptions } from './types'; declare const addCustomEvent: (tag: string, payload: T) => void; declare const freezePage: () => void; export { record, addCustomEvent, freezePage, Replayer, canvasMutation, _mirror as mirror, utils, };