import { GenericFunction } from '../types'; /** * Creates a throttled function that only invokes the provided function * at most once per every `wait` milliseconds. */ declare const throttle: (func: T, wait: number, options?: { leading?: boolean; trailing?: boolean; }) => T; export default throttle;