/**
 * `useInterval` is a custom hook that runs a function at a specified interval.
 *
 * @see Docs https://ui.ducor.net/hooks/use-interval
 */
declare const useInterval: (callback: () => void, delay: null | number) => void;
export default useInterval;
