/** * Utilizes the standard setInterval to work properly with javascript `using` statement. * Because of this, the interval gets automatically cleared on dispose. */ export declare const createTimeInterval: (handler: Bun.TimerHandler, interval?: number | undefined, ...arguments: any[]) => { id: ReturnType | undefined; clear: () => void; [Symbol.dispose]: () => void; };