/// interface AudioPlayerProps { audioToPlay: any; phoneNumber: string; onClose?: () => void; onPlay?: () => void; onPause?: () => void; } export default function AudioPlayer(props: AudioPlayerProps): JSX.Element; export {};