import { ProvidersService } from 'fccore2'; import { FcinputComponent } from '../fcinput'; /** * fc-avatar头像 * 头像组件。 * 用来代表用户或事物,支持图片、图标或字符展示。 */ export declare class FcavatarComponent extends FcinputComponent { provider: ProvidersService; /** 提示标题*/ fcToolTip: string; /**颜色*/ fcColor: string; /**背景颜色*/ fcBgColor: string; /**带徽章的头像*/ fcCount: string; _count: number; /**设置头像的图标类型*/ fcIcon: string; /**指定头像的形状,两种形状可选。*/ fcShape: string; /**支持三种类型:图片、Icon 以及字符,其中 Icon 和字符型可以自定义图标颜色及背景色。*/ /**图片类头像的资源地址;倘若图片加载失败,自动显示 nzIcon > nzText*/ /**字符型*/ fcText: string; /**大小,头像有三种尺寸*/ fcSize: string; /** 主对象值*/ mainObj: any; fcSrc: string; constructor(provider: ProvidersService); _afterParentInit(): void; }