import { types as t } from "@marko/compiler"; /** * Given any arbitrary function type will normalize method like functions into expressions. */ export declare function simplifyFunction(fn: t.Function): t.FunctionDeclaration | t.FunctionExpression | t.ArrowFunctionExpression;