import { MuxAudio } from "../../../media/mux-audio/spf.js"; //#region src/define/media/mux-audio/spf.d.ts declare class MuxAudioElement extends MuxAudio { static readonly tagName = "mux-audio"; } declare global { /** The Mux audio flavors in the build — see `../mux-video/spf` for why. */ interface MuxAudioFlavors { spf: MuxAudioElement; } interface HTMLElementTagNameMap { 'mux-audio': MuxAudioFlavors[keyof MuxAudioFlavors]; 'mux-audio-spf': Exclude extends never ? never : MuxAudioElement; } } //#endregion export { MuxAudioElement }; //# sourceMappingURL=spf.d.ts.map