/** * Replaces immediately-closing tags with self-closing tags, e.g replaces `` with `` * * @param xml XML input */ export declare function addSelfClosingTags(xml: string): string; /** * flattens an array of arrays * * @param arr the arrays to merge */ export declare function flatten(arr: T[][]): T[];