/** * @fileoverview Server-specific configuration schema for gutenberg-mcp-server. * Parses optional URL overrides for the Gutendex catalog API and Gutenberg file * servers, plus the local catalog-mirror database location and refresh schedule. * @module config/server-config */ import { z } from '@cyanheads/mcp-ts-core'; declare const ServerConfigSchema: z.ZodObject<{ gutendexBaseUrl: z.ZodDefault; gutenbergTextBaseUrl: z.ZodDefault; mirrorPath: z.ZodDefault; mirrorRefreshCron: z.ZodOptional; }, z.core.$strip>; export type ServerConfig = z.infer; export declare function getServerConfig(): ServerConfig; export {}; //# sourceMappingURL=server-config.d.ts.map