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