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 InputCallback = (incrementalSnapshotRecord: BrowserIncrementalSnapshotRecord) => void; export declare function trackInput(configuration: RumConfiguration, scope: SerializationScope, inputCb: InputCallback, target?: Document | ShadowRoot): Tracker;