/** * 节流函数 - 限制函数执行频率 * @param func 需要节流的函数 * @param wait 等待时间(毫秒) * @param options 可选配置项 * @returns 节流后的函数 */ export declare function throttle any>(func: T, wait: number, options?: { leading?: boolean; trailing?: boolean; }): (...args: Parameters) => void;