/** * Set an interval that will not run if the previous interval has not finished. */ export declare function setNonConcurrentInterval(callback: (...args: any[]) => any, ms: number, ...args: any[]): NodeJS.Timeout;