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