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