/** * @description: * @param {Function} fn * @param {number} delay */ declare function throttle(fn: Function, delay: number): (...args: any) => void; export default throttle;