/** * EVO-12 hosted OAuth — redirect-uri allow checks (ported from mcp-wave; * decoupled from the Wave env type — takes a plain nodeEnv string). * * claude.ai's connector uses fixed redirect URIs * (https://claude.ai|claude.com/api/mcp/auth_callback) — those must be in * `allowedRedirectUris`. Loopback is allowed only outside production (local dev). */ export declare function redirectUriAllowed(redirectUri: string, allowedRedirectUris: readonly string[], nodeEnv: string): boolean; export declare function allRedirectUrisAllowed(redirectUris: readonly string[], allowedRedirectUris: readonly string[], nodeEnv: string): boolean; //# sourceMappingURL=redirect-uri.d.ts.map