/** * @description 节流函数 * @param {boolean} options.leading - 表示首次是否执行 默认不传为执行 false为不执行 注意不可与trailing同时为false * @param {boolean} options.trailing - 表示最后一次是否执行 默认不传为执行 false为不执行 注意不可与leading同时为false * */ export declare function throttle(fn: any, wait: any, options?: any): (...args: any[]) => void;