import React from 'react'; import { IHasCX, IHasRawProps, IHasForwardedRef } from '@epam/uui-core'; export interface AvatarProps extends IHasCX, IHasRawProps>, IHasForwardedRef { /** HTML alt attribute value */ alt?: string; /** Image URL */ img: string | null; /** Size */ size: '12' | '18' | '24' | '30' | '36' | '42' | '48' | '54' | '60' | '72' | '78' | '90' | '144' | number; /** True to show placeholder */ isLoading?: boolean; } export declare const Avatar: React.ForwardRefExoticComponent>; //# sourceMappingURL=Avatar.d.ts.map