/** * @template {Function} F; * @param {F} func; * @param {number} wait; * @return {F}; */ export function throttle(func: F, wait: number): F;