/** * @description: * @param {Function} fn * @param {number} wait */ declare function debounce(fn: Function, wait: number): () => void; export default debounce;