import type { ServerConfig } from '../types/index.js';
declare const env: {
    NODE_ENV: "development" | "production" | "test";
    LOG_LEVEL: "debug" | "info" | "warn" | "error";
    USE_MOCK_OKTA: boolean;
    MCP_AUTH_REQUIRED: boolean;
    READ_ONLY_MODE: boolean;
    CACHE_ENABLED: boolean;
    CACHE_TYPE: "memory" | "sqlite";
    CACHE_TTL: number;
    CACHE_MAX_SIZE: number;
    RATE_LIMIT_MAX: number;
    RATE_LIMIT_WINDOW: number;
    OKTA_DOMAIN?: string | undefined;
    OKTA_API_TOKEN?: string | undefined;
    MCP_AUTH_AUDIENCE?: string | undefined;
    MCP_AUTH_ISSUER?: string | undefined;
};
export declare function loadConfig(): ServerConfig;
export { env };
//# sourceMappingURL=index.d.ts.map