/**
 * Converts a Blob object to a Base64-encoded string in the web environment.
 * @param blob - The Blob object to convert.
 * @returns A Promise that resolves with the Base64-encoded string or rejects with an error.
 */
export declare function convertBlobToBase64WebAsync(blob: Blob): Promise<string>;
