type GenericFn = (...args: T) => void; export declare const throttle: (callbackFn: GenericFn, delayTime: number) => (...args: T) => void; export {};