export function throttle(callback: any, time: any): { reset(): void; setTime(newTime: any): void; throttledCallback(...args: any[]): void; };