import Animated from "react-native-reanimated"; import ASTNode from "./simple-math-ast/parse/node"; export declare type Variables = { [key: string]: any; }; export declare type MathType = "reanimated" | "native"; declare type Node = number | Animated.Node; declare const reduceAst: (tree: ASTNode, variables: Variables, mathType: MathType) => number | Animated.Node | Node[]; export default reduceAst;