export declare function useThrottledCallbackWithClearTimeout any>(callback: T, wait: number): readonly [(...args: Parameters) => void, () => void]; export declare function useThrottledCallback any>(callback: T, wait: number): (...args: Parameters) => void;