export declare const config: { readonly env: "development" | "production" | "test"; readonly logLevel: "debug" | "info" | "warn" | "error"; readonly port: number; readonly trustProxy: boolean; readonly http: { readonly safeDomains: string[]; readonly timeoutMs: 5000; readonly retries: 2; }; readonly security: { readonly enableCSRF: true; readonly enableJWT: true; readonly jwtSecret: string; readonly rateLimit: { readonly windowMs: number; readonly maxRequests: 100; readonly maxPayloadSize: number; }; readonly cspDirectives: readonly ["default-src 'self'", "script-src 'self'", "style-src 'self'", "img-src 'self' data:", "object-src 'none'", "base-uri 'self'", "frame-ancestors 'none'"]; }; readonly redis: { readonly enabled: boolean; readonly url: string; }; }; export type Config = typeof config; //# sourceMappingURL=index.d.ts.map