import * as i0 from '@angular/core'; import { OnChanges, EventEmitter, ElementRef } from '@angular/core'; import { NzConfigKey } from 'ng-zorro-antd/core/config'; import { NzShapeSCType, NzSizeLDSType } from 'ng-zorro-antd/core/types'; /** https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-loading */ type NzAvatarLoading = 'eager' | 'lazy'; /** https://wicg.github.io/priority-hints/#idl-index */ type NzAvatarFetchPriority = 'high' | 'low' | 'auto'; declare class NzAvatarComponent implements OnChanges { readonly _nzModuleName: NzConfigKey; nzShape: NzShapeSCType; nzSize: NzSizeLDSType | number; nzGap: number; nzText?: string; nzSrc?: string; nzSrcSet?: string; nzAlt?: string; nzIcon?: string; readonly nzLoading: i0.InputSignal; readonly nzFetchPriority: i0.InputSignal; readonly nzError: EventEmitter; hasText: boolean; hasSrc: boolean; hasIcon: boolean; customSize: string | null; textEl?: ElementRef; private el; private cdr; constructor(); imgError(event: Event): void; ngOnChanges(): void; private calcStringSize; private setSizeStyle; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; static ngAcceptInputType_nzGap: unknown; } declare class NzAvatarGroupComponent { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } declare class NzAvatarModule { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵmod: i0.ɵɵNgModuleDeclaration; static ɵinj: i0.ɵɵInjectorDeclaration; } /** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ interface NzAvatarProps { shape?: NzShapeSCType; size?: NzSizeLDSType | number; gap?: number; src?: string; srcSet?: string; alt?: string; icon?: string; text?: string; error?: (event: Event) => void; } export { NzAvatarComponent, NzAvatarGroupComponent, NzAvatarModule }; export type { NzAvatarProps };