import { IXmlElement } from "./Xml"; /** * Some helper methods to handle MXL files. */ export declare class MXLHelper { /** * * @param data * @returns {Promise} * @constructor */ static MXLtoIXmlElement(data: string): Promise; static MXLtoXMLstring(data: string): Promise; }