interface XMLFormatterOptions { ignoredPaths: string[]; indentation: string; filter?: (node: Record) => boolean; collapseContent: boolean; lineSeparator: string; whiteSpaceAtEndOfSelfclosingTag: boolean; throwOnFailure: boolean; strictMode: boolean; } export declare const formatXML: (xml: string, _options?: Partial) => string; export default formatXML;