declare function useDebounce(fn: (...args: unknown[]) => any, delay: number, thisValue?: unknown): (...args: unknown[]) => unknown | unknown;
export { useDebounce };
