type SomeFunction = (...args: unknown[]) => void;
export declare function useDebounce<Func extends SomeFunction>(callBack: Func, delay?: number): Func;
export {};
