import * as babel from '@babel/core'; import { JSONOrNode } from '../../types/json'; import type { Context, ParseMitosisOptions } from './types'; declare const types: typeof babel.types; /** * Parses function declarations within the Mitosis copmonent's body to JSON */ export declare const componentFunctionToJson: (node: babel.types.FunctionDeclaration, context: Context, stateToScope: string[], options: Partial) => JSONOrNode; export {};