export * from "@politty/zod"; //#region src/index.d.ts /** * Generate compile-cache bin shims that import the cache helper from * `politty/compile-cache`. * * Overrides `@politty/zod`'s binding of the same name — the one thing this * alias cannot re-export as-is. A CLI depending on `politty` alone cannot * resolve `@politty/zod` from its own package under a strict node_modules * layout (pnpm), so a shim naming it would silently lose the compile cache. */ declare const generateCompileCacheShim: (options?: import("@politty/zod").GenerateCompileCacheShimOptions) => import("@politty/zod").GenerateCompileCacheShimResult[]; //#endregion export { generateCompileCacheShim };