export interface VoicePlayer { reset(): any; dispose(): any; list(): string[]; selected(): (string | null); select(id: string): (string | null); canPlay(): boolean; isPlaying(): boolean; startPlaying(): any; pausePlaying(): any; resumePlaying(): any; stopPlaying(): any; }