import { HTMLAttributes } from "react";
export declare type IBgColor = "purple" | "green";
export declare type IElement = HTMLDivElement;
export interface IUsernameProps extends HTMLAttributes {
name: string;
initials: string;
description?: string;
bgColor?: IBgColor;
className?: string;
"data-testid"?: string;
}