import type { RumConfiguration } from '@openobserve/browser-rum-core'; import type { FocusRecord } from '../../../types'; import type { Tracker } from './tracker.types'; export type FocusCallback = (data: FocusRecord) => void; export declare function trackFocus(configuration: RumConfiguration, focusCb: FocusCallback): Tracker;