/** * * Throttle function so it is only called once every n milliseconds * * @example * Utils.throttle(myFunction() {}, 100); * * @param {Function} func - Function to be throttled * @param {number} wait - Time in miliseconds * * @returns {Function} - Throttled function */ export declare function throttle(func: (...args: T) => void, wait: number): (...args: T) => void;