/** * Scroll Collector — tracks scroll position with throttling. * Captures: scrollY, velocity, direction reversals, pauses, max depth. */ import type { TelemetryEvent } from '../types.js'; export declare function startScrollTracking(push: (event: TelemetryEvent) => void): void; export declare function stopScrollTracking(): void; export declare function getScrollStats(): { reversalCount: number; maxDepth: number; pauseCount: number; }; //# sourceMappingURL=scroll.d.ts.map