type ScheduledFn = () => T | PromiseLike; /** * Schedules a function to be called on the next tick after the other promises * have been resolved. */ export declare function scheduleOnNextTick(cb: ScheduledFn): void; export {};