///
import { Node } from './types';
declare const parseXml: (templateXml: string) => Promise;
type XmlOptions = {
literalXmlDelimiter: string;
};
declare function buildXml(node: Node, options: XmlOptions, indent?: string): Buffer;
export { parseXml, buildXml };