export declare function base64toBlob(b64Data: string, contentType?: string, sliceSize?: number): Blob; export declare function dataURLtoBlob(dataurl: string): Blob; export declare function blobToDataURL(blob: any): Promise; export declare function blobToFile(blob: Blob, filename: string): File;