import React from 'react'; import { BoxSystemProps } from './Box'; import { StyleConfig } from '../utils/styleConfig'; export declare type AvatarParts = { avatar: ''; }; declare type AvatarDOMProps = React.ComponentPropsWithRef<'span'>; declare type AvatarStyleConfigProp = { styleConfig?: StyleConfig; }; declare type AvatarSystemProps = BoxSystemProps; declare type AvatarOwnProps = { src?: string; alt?: string; }; export declare type AvatarProps = AvatarDOMProps & AvatarStyleConfigProp & AvatarSystemProps & AvatarOwnProps & { as?: React.ElementType; }; export declare const Avatar: React.ForwardRefExoticComponent & React.RefAttributes>; export {};