declare function throttleByAnimationFrame(fn: (...args: T) => void): { (...args: T): void; cancel(): void; }; export default throttleByAnimationFrame;