/** * 节流函数(leading-edge) * @param fn 原函数 * @param delay 间隔毫秒 */ export declare const throttle: void>(fn: T, delay: number) => T;