import { z } from "zod"; export declare const ImageEntry: z.ZodObject<{ hash: z.ZodString; dataURL: z.ZodString; }, "strip", z.ZodTypeAny, { hash: string; dataURL: string; }, { hash: string; dataURL: string; }>; export type ImageEntry = z.infer;