import React from 'react'; export interface IAvatarMenuItemProps { label: string; icon: any; onClick: any; } export interface ISwipeableTemporaryAvatarProps { avatarName: string; editProfileText?: string; isAvatarOpen: boolean; setIsAvatarOpen?: any; mobileNavDirection?: string; setMobileNavDirection?: any; localization?: any; dataAttributes?: any; avatarPanelLogoutString?: string; avatarPanelOnClickSwitchDirection?: any; avatarPanelOnClickLogout?: any; avatarPanelOnClickViewProfile?: any; avatarPanelViewProfileString?: string; avatarPanelOnClickEditProfile?: any; avatarPanelEditProfileString?: string; avatarPanelMenuItems?: Array; avatarPanelOnClickMainAction?: any; avatarPanelMainActionString?: string; avatarPanelSettingItems?: Array; avatarPanelInvertNavString?: string; } declare const SwipeableTemporaryAvatar: (props: ISwipeableTemporaryAvatarProps) => React.ReactElement; export default SwipeableTemporaryAvatar;