/**
 * A decorator utility to postpone callback execution once after the main task execution
 * (as a microtask produced with Promise)
 */
export declare function microtask<T>(fn: (args?: T[]) => void, thisArg?: object): (arg?: T) => void;
