import type { RumConfiguration } from '@openobserve/browser-rum-core'; import type { BrowserIncrementalSnapshotRecord } from '../../../types'; import type { RecordIds } from '../recordIds'; import type { SerializationScope } from '../serialization'; import type { Tracker } from './tracker.types'; export type MouseInteractionCallback = (record: BrowserIncrementalSnapshotRecord) => void; export declare function trackMouseInteraction(configuration: RumConfiguration, scope: SerializationScope, mouseInteractionCb: MouseInteractionCallback, recordIds: RecordIds): Tracker;