export type Player = { playing: boolean; play(): void; pause(): void; stop(): void; clear(): void; interrupt(audio: AsyncIterableIterator): void; };