import type * as Ast from "@unified-latex/unified-latex-types";
/**
 * Parse `str` into an AST. Parsing starts in math mode and a list of
 * nodes is returned (instead of a "root" node).
 */
export declare function parseMath(str: string): Ast.Node[];
