// audio-decode.d.ts export default function audioDecode(buf: ArrayBuffer | Uint8Array): Promise; export interface Decoders { oga: (buf: Uint8Array) => Promise; mp3: (buf: Uint8Array) => Promise; flac: (buf: Uint8Array) => Promise; opus: (buf: Uint8Array) => Promise; wav: (buf: Uint8Array) => Promise; qoa: (buf: Uint8Array) => Promise; } export const decoders: Decoders;