import { z } from "zod"; export declare const intelligenceCacheEntrySchema: z.ZodObject<{ cacheKey: z.ZodString; artifactType: z.ZodString; fingerprint: z.ZodString; freshnessState: z.ZodString; artifactRef: z.ZodString; lastComputedAt: z.ZodString; }, "strip", z.ZodTypeAny, { fingerprint: string; artifactType: string; artifactRef: string; cacheKey: string; freshnessState: string; lastComputedAt: string; }, { fingerprint: string; artifactType: string; artifactRef: string; cacheKey: string; freshnessState: string; lastComputedAt: string; }>; export type IntelligenceCacheEntry = z.infer; export declare function parseIntelligenceCacheEntry(value: unknown): IntelligenceCacheEntry; //# sourceMappingURL=intelligence-cache-entry.d.ts.map