/**
 * @name useThrottle
 * @description A hook based throttling function
 */
export declare const useThrottle: (func: any, wait: any, immediate: any) => (...args: any[]) => void;
