export declare type DeadLoopDetectorOptions = { thresholdCount: number; looseThresholdCount: number; duration: number; maxSize: number; }; export declare class DeadLoopDetector { #private; constructor(options?: Partial); smellsLikeDead(t: T): boolean; }