//#region src/_util/throttleByAnimationFrame.d.ts declare function throttleByAnimationFrame(fn: (...args: T) => void): { (...args: T): void; cancel(): void; }; //#endregion export { throttleByAnimationFrame as default };