/** * Simple throttle function to avoid package dependencies */ export declare const throttle: >(callback: (...args: TArgs) => void, limit: number) => ((...args: TArgs) => void); //# sourceMappingURL=throttle.d.ts.map