/**
 * Helper to get remote file using fetch and return blob.
 *
 * @param url URL of file.
 * @return Blob object.
 */
declare function fetchRemoteBlob(url: string): Promise<Blob>;
export default fetchRemoteBlob;
//# sourceMappingURL=fetchRemoteBlob.d.ts.map