declare function fetchArrayBuffer(url: string): Promise; declare function fetchBlob(url: string): Promise; declare const Fetcher: { fetchArrayBuffer: typeof fetchArrayBuffer; fetchBlob: typeof fetchBlob; }; export default Fetcher;