import { z } from "zod"; export declare const Integrity: z.ZodObject<{ type: z.ZodEnum<{ md5: "md5"; sha1: "sha1"; sha256: "sha256"; sha512: "sha512"; }>; hash: z.ZodString; }, z.core.$strip>; export type Integrity = z.infer;