/**
 * 从 ahooks 直接复制过来的
 * https://github.com/alibaba/hooks/blob/master/packages/hooks/src/usePersistFn/index.ts
 */
export type noop = (...args: any[]) => any;
declare function usePersistFn<T extends noop>(fn: T): T;
export default usePersistFn;
