/** Represents the manifest for a compressed MusicXML file. */exportdeclareclassMXL {
private blob;
constructor(blob: Blob);
/**
* Returns the MusicXML string.
* @throws {Error} when the blob cannot be handled like a MXL file.
*/getMusicXML(): Promise<string>;
}