import { AnyFunction } from '../ts-helper'; type CallBack = AnyFunction; export declare function useInterval(callback: CallBack, delay: number): () => void; export {};