declare function throttle<F extends (...args: any[]) => void>(func: F, limit: number): F;

export { throttle };
