/// <reference types="lodash" />
/**
 * throttle
 * @param func
 * @param wait
 */
export default function throttle(func: any, wait: number): import("lodash").DebouncedFunc<any>;
