export interface IIntervalCheckLoop { start(options: { checkFunction: () => boolean; onChange: Function; delayMs?: number; }): any; stop(checkId: any): any; } export declare const StandardIntervalCheckLoop: { start({ checkFunction, onChange, delayMs }: { checkFunction: () => boolean; onChange: Function; delayMs?: number; }): any; stop(checkId: any): void; };