/** * A comprehensive set of all MathML tag names. * This includes current and deprecated MathML elements from the MathML specification. */ export declare const mathmlTags: Set; /** * Check if a given tag name is a MathML tag. * @param tagName - The tag name to check * @returns true if the tag is a MathML tag, false otherwise */ export declare const isMathmlTag: (tagName: string) => boolean; //# sourceMappingURL=mathml-tags.d.ts.map