import React from 'react'; export interface AvatarBadgeProps { text?: string; color?: string; backgroundColor?: string; src?: React.ReactNode; avatarSize?: number; shape?: 'circle' | 'square'; cornerIcon?: React.ReactNode; placement?: 'topRight' | 'bottomRight'; fontSize?: number; className?: string; } declare const AvatarBadge: React.FC; export default AvatarBadge;