///
export interface PlaySoundProps extends React.AudioHTMLAttributes {
type?: 'success' | 'error' | 'warning';
src?: string;
autoPlay?: boolean;
loop?: boolean;
volume?: number;
muted?: boolean;
controls?: boolean;
visible?: boolean;
className?: string;
}