export declare const useBlobUrl: (src: string) => {
    audio: HTMLAudioElement | undefined;
    blob: Blob | undefined;
    isLoading: boolean;
    url: string | undefined;
};
