/** * @copyright Techlead LLC * @see https://learn.javascript.ru/task/throttle */ declare const throttle: any>(fn: Fn, ms: number) => (...args: Parameters) => void; export { throttle };