import { Detector } from "./Detector"; import { ClientMonitor } from "../ClientMonitor"; export type StatsGapDetectorConfig = { gapRatioThreshold: number; minGapInMs: number; createEvent?: boolean; }; export declare class StatsGapDetector implements Detector { readonly clientMonitor: ClientMonitor; readonly name = "stats-gap-detector"; disabled: boolean; private _previousCollectionStartedAt?; constructor(clientMonitor: ClientMonitor); private get config(); update(): void; }