/** * Parse and solve a mathematical expression. * @param input {string} - is the expression as a string. */ export declare const ParseExpression: (input: string) => number;