export interface AuthenticatedUser {
  id: string;
  email: string;
  displayName: string | null;
  role: 'USER' | 'ADMIN';
  sessionId: string;
}
