import type { ClocksState, RelativeTime } from '@openobserve/browser-core'; import type { RumConfiguration } from '../../configuration'; export type FirstHidden = ReturnType; export interface Options { viewStart: ClocksState; } export declare function trackFirstHidden(configuration: RumConfiguration, viewStart: ClocksState, eventTarget?: Window): { readonly timeStamp: RelativeTime; stop: () => void; };