import './accessible-avatar.styles.scss'; import { FC } from 'react'; import { AvatarProps } from '../ant-design/avatar'; /** * AccessibleAvatarProps * * @memberof AccessibleAvatar */ interface AccessibleAvatarProps extends AvatarProps { /** * position of the badge icon on the avatar */ badgePosition?: 'bottom-left' | 'bottom-right' | 'top-left' | 'top-right'; /** * onclick callback function */ onAvatarClick?: () => void; } /** * A Simple Avatar Component */ export declare const AccessibleAvatar: FC; export {};