import { AuthenticationUserResponse } from '../interfaces/authentication-user.response'; import { Permission } from '../../permission/models/permission.model'; import { AuthenticationProfile } from './authentication-profile.model'; export declare class AuthenticationUser { id: number; email: string; profile: AuthenticationProfile; permissions: Permission[]; constructor(response?: AuthenticationUserResponse); readonly isAdmin: boolean; readonly displayName: string; }