type ThrottledFunction any> = (...args: Parameters) => void; declare function throttle any>(fn: T, ms: number): ThrottledFunction; export { throttle };