/** * Sleep-proof interval, used to execute a callback at a specified interval. * If the system goes to sleep and wakes up later, the callback will be executed * immediately (within 100ms) after waking up if the specified delay has passed. */ export declare function useInterval(callback: () => void, delayMs: number, maxRandomStaggerMs: number): void;