import type { AuthUser } from '../../types/index.js'; /** Returns true if the user is authenticated with a real (non-anonymous) account */ export declare function isRealUser(user: { isAnonymous?: boolean; } | null | undefined): boolean; /** Server-side version using AuthUser type */ export declare function isRealUserServer(user: AuthUser | null | undefined): boolean; //# sourceMappingURL=helpers.d.ts.map