import React from "react"; import { AvatarSize } from "./AvatarConstants"; import VibeComponentProps from "../../types/VibeComponentProps"; import { SubIcon } from "../../types"; export interface AvatarBadgeProps extends VibeComponentProps { src?: string; /** * Use to provide SVG Components */ icon?: SubIcon; ariaLabel?: string; tabIndex?: string | number; className?: string; size?: string; } export declare const AvatarBadge: React.FC & { sizes?: typeof AvatarSize; };