export type SoundEffect = 'complete' | 'newtype' | 'error';
export declare function playSoundEffect(soundEffect: SoundEffect): Promise<void>;
export declare function getSoundEffectList(): Array<{
    name: SoundEffect;
    description: string;
}>;
//# sourceMappingURL=sound.d.ts.map