import React from 'react'; interface NameInitialsAvatarProps { name: string; bgColor?: string; textColor?: string; textWeight?: string | number; textSize?: string | number; size?: string | number; borderRadius?: string; borderColor?: string; borderStyle?: string; borderWidth?: string | number; shape?: "circle" | "square"; autoColor?: boolean; initialsLength?: 1 | 2 | 3; } declare const NameInitialsAvatar: (props: NameInitialsAvatarProps) => React.JSX.Element; export { NameInitialsAvatar };