import * as Semantic from '@math-blocks/semantic'; import * as types from '../char/types'; /** * Convert Semantic tree to CharNode tree. * @param {Semantic.types.Node} expr * @param {boolean} oneToOne This affects when to wrap children of a 'Mul' node in parens. * @returns {Editor.types.CharRow} */ export declare const print: (expr: Semantic.types.Node, oneToOne?: boolean) => types.CharRow;