/**
 *
 * @param callback Method to call
 * @param delay Delay in ms
 * @param dependencies If present, effect will only activate if the values in the list change.
 */
declare const useDebounce: (callback: () => void, delay: number, dependencies?: any[]) => void;
export default useDebounce;
