/** * Schedule a callback to be called every `interval` seconds. Returns a * function that can be called to stop the timer. * @param callback The callback to call every `interval` seconds. * @param interval The interval in seconds. * @returns A cleanup function. */ export declare function setInterval(callback: () => void, interval: number): () => void;