import { FetchFn } from '@allmaps/types'; declare const fetchAndGetImageDataWorker: { getImageData(tileUrl: string, onAbort: () => void, fetchFn: FetchFn | undefined, width: number, height: number): Promise; }; export type FetchAndGetImageDataWorkerType = typeof fetchAndGetImageDataWorker; export {};