import { TemplateRef, AfterContentInit } from '@angular/core'; import { DefaultGravatar, AvatarColor } from '@ffdc/uxg-angular-components/avatar'; import { UserProfile } from './user-profile'; import { HeaderType } from './user-profile-menu.component'; export declare class UxgUserProfilePanelComponent implements AfterContentInit { user: UserProfile; defaultGravatar: DefaultGravatar | undefined; color: AvatarColor; headerType: HeaderType; contentTemplate?: TemplateRef; actionsTemplate?: TemplateRef; detailsTemplate?: TemplateRef; avatarImage: TemplateRef; uxgUserProfilePanelContent: TemplateRef | undefined; uxgUserProfilePanelActions: TemplateRef | undefined; uxgUserProfilePanelDetails: TemplateRef | undefined; hasContent: boolean; hasFooter: boolean; hasDetails: boolean; constructor(); ngAfterContentInit(): void; }