import type { RumConfiguration } from '@datadog/browser-rum-core';
import type { BrowserIncrementalSnapshotRecord } from '../../../types';
import type { Tracker } from './tracker.types';
export type InputCallback = (incrementalSnapshotRecord: BrowserIncrementalSnapshotRecord) => void;
export declare function trackInput(configuration: RumConfiguration, inputCb: InputCallback, target?: Document | ShadowRoot): Tracker;
