import * as t from '@babel/types';
import type { PluginPass, NodePath } from '@babel/core';
interface FunctionToClass {
    (functionName: string, path: NodePath<t.Function>, state: PluginPass): void;
}
declare const spreadCustomHook: FunctionToClass;
export default spreadCustomHook;
