/** * Cache types and schema re-exports * * The actual cache implementation is platform-specific. * See src/platforms/node/cache.ts for the Node.js FileCache. */ import { z } from 'zod'; /** * Zod schema for validating cache entries read from disk */ export declare const CacheEntrySchema: z.ZodObject<{ data: z.ZodUnknown; timestamp: z.ZodNumber; ttl: z.ZodNumber; }, z.core.$strip>; //# sourceMappingURL=cache.d.ts.map