declare namespace FnUtils { function throttle(callback: (...args: T) => void, wait?: number): (...args: T) => void; } export default FnUtils;