import { MTreeNode } from '../../model/Measurement'; import { MMELVariable } from '../../serialize/interface/supportinterface'; import { MBinOperatorTypes, MListOperatorTypes } from './Operators'; export declare function measurementValidCheck(def: string, types: Record): void; export declare function isListOperator(c: string): c is MListOperatorTypes; export declare function isBinaryOperator(c: string): c is MBinOperatorTypes; export declare function createMTreeNodeWithValue(value: number[] | string): MTreeNode; export declare function createMTreeNodeWithOperator(action: string, childs: MTreeNode[]): MTreeNode; export declare function createMTreeNodeWithVariable(action: string): MTreeNode; //# sourceMappingURL=BasicFunctions.d.ts.map