export interface InterfaceAvatarProps { } export interface IAvatarBadgeProps { } export interface IAvatarGroupProps extends IAvatarProps { /** * Avatar children */ children?: JSX.Element[] | JSX.Element; } export type IAvatarComponentType = React.ForwardRefExoticComponent & React.RefAttributes> & { Badge: React.ForwardRefExoticComponent & React.RefAttributes>; Group: React.ForwardRefExoticComponent & React.RefAttributes>; Image: React.ForwardRefExoticComponent & React.RefAttributes>; FallbackText: React.ForwardRefExoticComponent & React.RefAttributes>; }; export type IAvatarProps = InterfaceAvatarProps;