import React from "react"; import { ColorSpecifier } from "../../theme/theme"; export interface TextAvatarProps extends Omit, "color" | "size"> { name: string; initials?: string; color?: ColorSpecifier; invert?: boolean; size?: string; } declare function TextAvatar({ name, initials, color, invert, size, ...rest }: TextAvatarProps): React.JSX.Element; export default TextAvatar;