import { EventEmitter } from '../../stencil-public-runtime'; export declare class MenuAvatar { hostElement: HTMLIxMenuAvatarElement; /** * First line of text */ top?: string; /** * Second line of text */ bottom?: string; /** * Display a avatar image */ image?: string; /** * Display the initials of the user. Will be overwritten by image */ initials?: string; /** * Tooltip text to display on hover. If not set, the 'top' property (user name) will be used as the default tooltip text. * * @since 4.3.0. */ tooltipText?: string; /** * aria-label for the tooltip * * @since 4.3.0. */ ariaLabelTooltip?: string; /** * i18n label for 'Logout' button */ i18nLogout: string; /** * Control the visibility of the logout button */ hideLogoutButton: boolean; /** * Enable Popover API rendering for dropdown. * * @default false * @since 4.3.0 */ enableTopLayer: boolean; /** * Control the visibility of the dropdown menu */ showContextMenu: boolean; /** * Logout click */ logoutClick: EventEmitter; private avatarElementId; private readonly tooltipRef; onSlotChange(): void; render(): any; }