import React from "react"; import type { AvatarWithBadgeProps } from "./AvatarWithBadge.types"; /** * AvatarWithBadge - Avatar component with optional verification badge overlay * * Used for displaying user/medium/terreiro avatars with their profile verification badge. * The badge appears at the top-right corner of the avatar (to avoid overlap with edit buttons * typically positioned at bottom-right). * * @example * // Basic usage with badge * * * @example * // Without badge * * * @example * // With children (e.g., Fab button overlay at bottom-right) * * * * * */ declare const AvatarWithBadge: React.FC; export default AvatarWithBadge;