declare function rafThrottle(fn: Function): (this: any, ...args: any[]) => void;
declare function debounce(fn: Function, delay?: number): (this: any, ...args: any[]) => void;
export { rafThrottle, debounce };
