import React from 'react'; import './AutomationCloseAvatar.css'; import '../DropDown/Dropdown'; export type AvatarProps = { avatars?: Array; showPlusSignAfter?: number; type?: 'text' | 'image'; showExtraType?: string; showExtraColor?: string; size?: 'small' | 'large' | 'extra-large'; showStatus?: boolean; isToHideTooltip?: boolean; }; export type AvatarData = { id: number; name: string; image: string; email: string; avatarColor: string; status?: string; }; declare function AutomationCloseAvatar(props: AvatarProps): React.JSX.Element; declare const AutomationCloseAvatarInfo: ({ name, email }: { name: any; email: any; }) => React.JSX.Element; export default AutomationCloseAvatar; export { AutomationCloseAvatarInfo };