import type { RumConfiguration } from '@openobserve/browser-rum-core'; import type { BrowserIncrementalSnapshotRecord } from '../../../types'; import type { SerializationScope } from '../serialization'; import type { Tracker } from './tracker.types'; export type MediaInteractionCallback = (incrementalSnapshotRecord: BrowserIncrementalSnapshotRecord) => void; export declare function trackMediaInteraction(configuration: RumConfiguration, scope: SerializationScope, mediaInteractionCb: MediaInteractionCallback): Tracker;