import { z } from 'zod';
export declare const RepoCacheV13: z.ZodPipeline<z.ZodEffects<z.ZodString, string | number | boolean | import("type-fest").JsonObject | import("type-fest").JsonValue[] | readonly import("type-fest").JsonValue[] | null, string>, z.ZodObject<{
    repository: z.ZodString;
    revision: z.ZodEffects<z.ZodNumber, 13, number>;
    payload: z.ZodString;
    hash: z.ZodString;
    fingerprint: z.ZodString;
}, "strict", z.ZodTypeAny, {
    revision: 13;
    hash: string;
    repository: string;
    payload: string;
    fingerprint: string;
}, {
    revision: number;
    hash: string;
    repository: string;
    payload: string;
    fingerprint: string;
}>>;
export type RepoCacheRecord = z.infer<typeof RepoCacheV13>;
