import { ValidationError } from "fast-xml-parser"; import { XmlNode } from "./types"; export declare function validate(xml: string): true | ValidationError; export declare function parse(xml: string): XmlNode;