/** * Seelen cloud session data exposed to the UI. * Tokens are intentionally excluded — the background manages them exclusively. */ export type SeelenSession = { id: string; email: string; username: string; displayName: string | null; avatar: string | null; plan: string; permissions: Array; roles: Array; }; //# sourceMappingURL=SeelenSession.d.ts.map