Dentro de src/react-app-env.d.ts agregue esto:
/// <reference types="react-scripts" /> declare module '*.mp3'; // '*.wav' if you're using wav formatAhora puedes usarlo así:
import audio1 from './audio/audio.mp3'; const myAudio = new Audio(audio1);