type AnyVoidFunc = (...args: any[]) => void;
/**
 * Wrapper around setInterval() but additionally calls unref() on created interval.
 */
export declare function setIntervalUnref<T extends AnyVoidFunc>(callback: T, ms: number, ...cbArgs: Parameters<T>): NodeJS.Timeout;
/**
 * Wrapper around setTimeout() but additionally calls unref() on created interval.
 */
export declare function setTimeoutUnref<T extends AnyVoidFunc>(callback: T, ms: number, ...cbArgs: Parameters<T>): NodeJS.Timeout;
export {};
//# sourceMappingURL=Timers.d.ts.map