import React from 'react'; interface AvatarProps { size?: 16 | 20 | 24 | 32 | 40 | 56; shape?: 'pill'; variant?: 'image'; blurhash?: boolean; imgUrl: string; } declare const Avatar: React.FC; export default Avatar; //# sourceMappingURL=avatar.d.ts.map