/** * Returns true if the pathname targets Realm reserved auth URLs (`/_auth/*`). * * @param pathname - Full pathname (e.g. from URL), optionally with path prefix. * @returns `true` if the first path segment, after `withoutPathPrefix`, is `_auth`. * @example * isAuthRoutePath('/_auth/idp-login'); // true * isAuthRoutePath('/es/_auth/idp-login'); // false */ export declare function isAuthRoutePath(pathname: string): boolean; //# sourceMappingURL=is-auth-route-path.d.ts.map