import { ImageData } from ".";
import { Image } from "../api";
export declare const downloadImagesAndMakePreviews: (imageStorageDirectory: string | undefined, images: Image[]) => Promise<{
    downloadedImages: {
        width: number;
        height: number;
        url: string;
        id: string;
        pathOrUrl: string;
        previewData: ImageData;
        data: string;
        mimeType: string;
    }[];
    previews: {
        data: string;
        mimeType: string;
        type: string;
    }[];
}>;
