declare module 'timers/promises' { import { TimerOptions } from 'timers'; /** * Returns a promise that resolves after the specified delay in milliseconds. */ function setTimeout(delay: number, value?: T, options?: TimerOptions): Promise; /** * Returns a promise that resolves in the next tick. */ function setImmediate(value: T, options?: TimerOptions): Promise; }