/**
 * 节流函数
 * @param fn 要执行的方法，必传
 * @param waitTime 间隔时间，非必传，默认为700毫秒
 * @returns 一个函数
 */
declare function throttle(fn: Function, waitTime?: number): () => void;
export { throttle };
