import { Throttle } from './throttle'; /** * Creates a throttled function that only invokes `fn` at most once per * every `wait` milliseconds. `fn` is called in the end of `wait` delay * * @param {number} wait The number of milliseconds to throttle invocations to. * @param {Function} fn The function to throttle. */ declare const _default: Throttle; export default _default;