export interface AppConfig { port: number; baseUrl: string; baseUrlPath: string; allowedOrigins: string | undefined; logLevel: string; ciamTenantId: string | undefined; ciamDomain: string | undefined; workforceTenantId: string | undefined; authorizationServerUrl: string; ulsTokenEndpoint: string; ulsClientId: string; ulsResource: string; accountApiBaseUrl: string; accountApiAudience: string; accountApiScope: string; tomtomApiBaseUrl: string; tomtomApiKey: string | undefined; mcpTransportMode: string | undefined; testAuthorizeClientEnabled: boolean; } export declare function getAppConfig(env?: NodeJS.ProcessEnv): AppConfig; /** * Central configuration singleton for the TomTom MCP server. * All static values and environment-derived defaults live here. */ export declare const appConfig: AppConfig; //# sourceMappingURL=appConfig.d.ts.map