import { Role } from "./role.enum"; /** * The returned User representation for authentication API */ export declare class User { /** * Username */ username: string; /** * Full name */ fullName: string; /** * User role */ userRole: Role; /** * The security JWT which will be used in each subsequent request */ token: string; }