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