declare const useAudio: (url: string) => {
    isPlaying: boolean;
    start: () => void;
    stop: () => void;
};
export default useAudio;
