import { SyntaxNode } from '@lezer/common';
import { CommonAST, FormulaContext, FormulaInference } from '../constants/interfaces';
export type TransformNodeFNType = (program: string, node: SyntaxNode, inference: FormulaInference, context?: FormulaContext) => CommonAST | undefined;