import type { IMIDIConverter, MeasureTimemap } from './interfaces/IMIDIConverter'; import { PlayerOptions } from './Player'; /** * Implementation of IMIDIConverter that queries the musicxml-midi API (@see https://github.com/infojunkie/musicxml-midi) * to convert a MusicXML to a MIDI file. It extracts the timemap contained within the MIDI file, expressed as MIDI marker events. */ export declare class MmaConverter implements IMIDIConverter { protected _parameters?: Record | undefined; protected _version?: { name: string; version: string; }; protected _midi?: ArrayBuffer; protected _timemap?: MeasureTimemap; protected _uri: string; constructor(uri: string, _parameters?: Record | undefined); initialize(musicXml: string, options: Required): Promise; get midi(): ArrayBuffer; get timemap(): MeasureTimemap; get version(): string; } //# sourceMappingURL=MmaConverter.d.ts.map