import type { BrowserIncrementalSnapshotRecord } from '../../../types'; import type { SerializationScope } from '../serialization'; import type { Tracker } from './tracker.types'; export type StyleSheetCallback = (incrementalSnapshotRecord: BrowserIncrementalSnapshotRecord) => void; export declare function trackStyleSheet(scope: SerializationScope, styleSheetCb: StyleSheetCallback): Tracker; export declare function getPathToNestedCSSRule(rule: CSSRule): number[] | undefined;