/** * Zod schemas for uv configuration types. * * Types are defined in types.ts (source of truth). * Schemas are generated by ts-to-zod and re-exported here with proper typing. * * @module uv-config/schema */ import type { z } from 'zod'; import type { UvConfig, UvConfigWorkspace, UvIndexEntry } from './types'; /** * Schema for uv workspace configuration. */ export declare const UvConfigWorkspaceSchema: z.ZodType; /** * Schema for uv index entry configuration. */ export declare const UvIndexEntrySchema: z.ZodType; /** * Schema for [tool.uv] section in pyproject.toml or uv.toml. */ export declare const UvConfigSchema: z.ZodType;