/**
 * 代码来源：https://github.com/alibaba/hooks/blob/master/packages/hooks/src/usePersistFn/index.ts
 * 关于 this：https://www.jianshu.com/p/8b3a2513d8e5
 */
export declare type noop = (...args: any[]) => any;
/**
 * 持久化 function 的 Hook
 */
declare function usePersistFn<T extends noop>(fn: T): T;
export default usePersistFn;
