export declare class EventLoopHandler { private readonly MAX_LOOP; private eventCounter; constructor(MAX_LOOP?: number); step(fn: () => Promise | void): void; }