export declare function throttleByAnimationFrame(fn: (...args: T) => void): { (...args: T): void; cancel: () => void; }; export declare function throttleByAnimationFrameDecorator(): (target: any, key: string, descriptor: any) => { configurable: boolean; get(): any; };