import * as Ast from "@unified-latex/unified-latex-types"; import * as SystemeSpec from "./types"; type SystemeMatchers = { at?: string; equals?: string; equationSeparator?: string; mathOperations?: string[]; whitelistedVariables?: (string | Ast.String | Ast.Macro)[]; }; /** * Parse the contents of the `\systeme{...}` macro */ export declare function parse(ast: Ast.Node[], options?: SystemeMatchers): SystemeSpec.Line[]; export {}; //# sourceMappingURL=parser.d.ts.map