import { SoundType } from "../export-enums"; import { SoundManagement } from "../export-types"; export declare class Sound { readonly type: SoundType; static Management: SoundManagement; readonly native: HTMLAudioElement; constructor(type?: SoundType); get volume(): number; set volume(vol: number); get isStopped(): boolean; playNow(): Promise; pause(): Promise; resume(): Promise; stop(): Promise; play(): Promise; } //# sourceMappingURL=sound.d.ts.map