import type { ReplayStats } from '@datadog/browser-rum-core'; export declare const MAX_STATS_HISTORY = 1000; export declare function getSegmentsCount(viewId: string): number; export declare function addSegment(viewId: string): void; export declare function addRecord(viewId: string): void; export declare function addWroteData(viewId: string, additionalBytesCount: number): void; export declare function getReplayStats(viewId: string): ReplayStats | undefined; export declare function resetReplayStats(): void;