import React, { ReactNode } from 'react'; import { TextColorProps } from 'styled-system'; export interface AvatarImageProps { optimizeSrc?: boolean; src?: string; size?: number; className?: string; alt?: string; loading?: boolean; children?: ReactNode; } export interface AvatarProps extends Omit { label?: string; textColor?: TextColorProps['color']; } declare const Avatar: React.FC; export default Avatar;