import type { ImageFieldImage, LinkToMediaField } from "@prismicio/client";
import type { PluginOptions } from "../types";
type ShouldDownloadFileArgs = {
    path: string[];
    field: ImageFieldImage<"filled"> | LinkToMediaField<"filled">;
    pluginOptions: PluginOptions;
};
export declare const shouldDownloadFile: (args: ShouldDownloadFileArgs) => Promise<boolean>;
export {};
