/**
 * 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<UvConfigWorkspace, z.ZodTypeDef, UvConfigWorkspace>;
/**
 * Schema for uv index entry configuration.
 */
export declare const UvIndexEntrySchema: z.ZodType<UvIndexEntry, z.ZodTypeDef, UvIndexEntry>;
/**
 * Schema for [tool.uv] section in pyproject.toml or uv.toml.
 */
export declare const UvConfigSchema: z.ZodType<UvConfig, z.ZodTypeDef, UvConfig>;
