import { LitElement } from 'lit'; import '../../reusable/link'; /** * Header user profile. * @fires on-profile-link-click - Captures the view profile link click event and emits the original event details. `detail:{ origEvent: Event }` * @slot unnamed - Slot for the profile picture img. */ export declare class HeaderUserProfile extends LitElement { static styles: import("lit").CSSResult; /** The user's name. */ accessor name: string; /** The user's job title, or subtext. */ accessor subtitle: string; /** The user's email address. */ accessor email: string; /** View profile link URL. */ accessor profileLink: string; /** View Profile link text. */ accessor profileLinkText: string; render(): import("lit-html").TemplateResult<1>; private _handleProfileClick; } declare global { interface HTMLElementTagNameMap { 'kyn-header-user-profile': HeaderUserProfile; } } //# sourceMappingURL=headerUserProfile.d.ts.map