/** * @fileoverview Server-specific configuration for onebusaway-mcp-server. * @module config/server-config */ import { z } from '@cyanheads/mcp-ts-core'; declare const ServerConfigSchema: z.ZodObject<{ apiKey: z.ZodDefault; baseUrl: z.ZodDefault; rateLimitRequests: z.ZodDefault>; rateLimitWindowMs: z.ZodDefault>; rateLimitMaxWaitMs: z.ZodDefault>; }, z.core.$strip>; export type ServerConfig = z.infer; export declare function getServerConfig(): ServerConfig; export {}; //# sourceMappingURL=server-config.d.ts.map