/** * Process-level env-var feature flags that influence rate-limit and gateway * security behavior. Kept as a tiny module so non-gateway packages can read * them without pulling the rate-limit subsystem. */ export declare function isAuthRateLimitGloballyDisabled(): boolean; export declare function isGatewayStrictSecurityEnabled(cfg?: { gateway?: { security?: { strict?: boolean; }; }; }): boolean;