import React from 'react'; export interface AvatarProps extends React.HTMLAttributes { /** * The size of the avatar */ size?: 'large' | 'regular' | 'small'; /** * Alternative text for the avatar image */ alt?: string; /** * The source for the avatar image */ src: string; } declare const Avatar: React.ForwardRefExoticComponent>; export default Avatar; //# sourceMappingURL=Avatar.d.ts.map