/** * Custom hook that sets up an interval to call the provided callback function. * * @param callback - The function to be called at each interval. * @param delay - The delay (in milliseconds) between each interval. Pass `null` to stop the interval. */ export declare function useInterval(callback: () => void, delay: number | null): void; //# sourceMappingURL=use-interval.d.ts.map