import React from 'react'; import AvatarGroup from './avatar-group'; import { CSS } from '../theme/stitches.config'; import { ReactRef } from '../utils/refs'; import { AvatarVariantsProps } from './avatar.styles'; interface Props { text?: string; src?: string; icon?: React.ReactNode; alt?: string; className?: string; imgRef?: ReactRef; as?: keyof JSX.IntrinsicElements; } declare type NativeAttrs = Omit & React.HTMLAttributes>, keyof Props | 'sizes'>; export declare type AvatarProps = Props & AvatarVariantsProps & NativeAttrs & { css?: CSS; }; export declare const Avatar: React.ForwardRefExoticComponent & NativeAttrs & { css?: CSS | undefined; } & React.RefAttributes>; declare type AvatarComponent

= React.NamedExoticComponent

& { Group: typeof AvatarGroup; }; declare const _default: AvatarComponent; export default _default;