import React from 'react'; export type AvatarSize = 'sm' | 'md' | 'lg'; export type AvatarStatus = 'online' | 'offline' | 'idle' | 'dnd'; export type AvatarProps = React.HTMLAttributes & { src?: string; alt?: string; fallback?: string; size?: AvatarSize; status?: AvatarStatus; }; type AvatarComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const Avatar: AvatarComponent; export default Avatar; //# sourceMappingURL=index.d.ts.map