export declare function throttle<T extends (...args: any[]) => void>(func: T, timeFrame: number): (...args: Parameters<T>) => void;
