/**
 * @fileoverview Server-specific configuration for the ClinicalTrials.gov MCP server.
 * @module config/server-config
 */
import { z } from '@cyanheads/mcp-ts-core';
declare const ServerConfigSchema: z.ZodObject<{
    apiBaseUrl: z.ZodDefault<z.ZodString>;
    requestTimeoutMs: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
    maxPageSize: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
}, z.core.$strip>;
export type ServerConfig = z.infer<typeof ServerConfigSchema>;
/** Get server configuration (lazy-parsed from env vars). */
export declare function getServerConfig(): ServerConfig;
export {};
//# sourceMappingURL=server-config.d.ts.map