import { XMLParser } from 'fast-xml-parser'; import * as OOXML from 'ooxml-types'; export declare const ooxml_parser: XMLParser; export declare function EnsureArray(tag?: OOXML.OneOrMany): T[]; export declare function IterateTags(root: OOXML.OneOrMany | undefined, fn: (tag: T) => false | void): void; export declare function MapTags(root: OOXML.OneOrMany | undefined, fn: (tag: T) => K): K[]; export declare function FirstTag(root: OOXML.OneOrMany): T;