import type { XmlExampleResult, XmlNode } from './xml-node.js'; /** Formatting is restricted to element-only content, where it cannot change text values. */ export type WriteXmlOptions = { format?: boolean; xmlDeclaration?: boolean; }; /** Serialize an XML document, validating names, characters, and namespace bindings. */ export declare const writeXml: (nodes: XmlNode[], options?: WriteXmlOptions) => XmlExampleResult; //# sourceMappingURL=write-xml.d.ts.map