import { Updater } from './Updater'; export declare class OnIntervalUpdater implements Updater { private readonly _update; readonly name = "OnIntervalUpdater"; readonly description = "Call the update() method given in the constructor once the interval elapsed"; timer: ReturnType; constructor(intervalInMs: number, _update: () => void); close(): void; } //# sourceMappingURL=OnIntervalUpdater.d.ts.map