type FormulaObject = any; type FormulaProps = { suggestions?: { key: string; label: string; unit?: string; type: string; }[]; initFormula?: string; /** * `FormulaObject` is an instance of [fparser](https://github.com/bylexus/fparse) */ onSave?: (param: { formula: string; variables: string[]; formulaFunc: FormulaObject; }) => void; }; declare const Formula: ({ suggestions, initFormula, onSave }: FormulaProps) => JSX.Element; export default Formula; //# sourceMappingURL=Formula.d.ts.map