/**
 * 基于 requestAnimationFrame 的防抖函数
 */
export declare function rAFDebounce<T extends (...args: any[]) => any>(fn: T): T;
