export default class I2CErrorDetector { private _errorThreshold; private _windowMs; private _checkIntervalMs; private _isErrorState; private _errorQueue; private _logger; constructor(errorThreshold: number, windowMs: number, checkInterval: number, label?: string); addErrorInstance(): void; get isErrorState(): boolean; private _checkQueue; }