/** * Throttle the calling of a function * @returns {Function} * @param callback * @param limit * * @signature * U.throttle(callback, limit) */ export declare function throttle(callback: Function, limit: number): Function; //# sourceMappingURL=throttle.d.ts.map