/** * Find the last function node to be evaluated in a MathJS expression tree. * @param root The root node of a MathJS expression tree * @returns The last function node to be evaluated, or null if there are none */ export default function lastFunctionNode(root: any): any;