import { Service } from '../../services/service'; export declare const USER_INFO_SVC = "UserInfoService"; export declare class UserInfoService extends Service { userColors: string[]; userColorNames: string[]; private logger; private settingsService; static getInstance(): UserInfoService; static build(): UserInfoService; private constructor(); getAvatarImage(objId: string, initials: string, color: string, size: number, lastAvatarUpdate: any): HTMLImageElement | { src: string; } | null; getNameInformation(firstName: string, lastName: string): { displayName: string; initials: string; }; createDefaultAvatarImage(initials: string, color: string): HTMLImageElement; computeUserColor(displayName: string): { colorIndex: number; color: string; colorName: string; }; } //# sourceMappingURL=userInfo.service.d.ts.map