export declare function useInterval(callback: () => void, delay: number | null, options?: {
    immediate?: boolean;
}): void;
