import { AvatarPassThrough, AvatarSize, AvatarShape } from 'primeng/types/avatar'; export * from 'primeng/types/avatar'; import * as _angular_core from '@angular/core'; import { BaseComponent } from 'primeng/basecomponent'; import * as i1 from 'primeng/bind'; import { Bind } from 'primeng/bind'; import { BaseStyle } from 'primeng/base'; import * as i2 from 'primeng/api'; declare class AvatarStyle extends BaseStyle { name: string; style: string; classes: { root: ({ instance }: { instance: any; }) => (string | { 'p-avatar-image': boolean; 'p-avatar-circle': boolean; 'p-avatar-lg': boolean; 'p-avatar-xl': boolean; })[]; label: string; icon: string; }; static ɵfac: _angular_core.ɵɵFactoryDeclaration; static ɵprov: _angular_core.ɵɵInjectableDeclaration; } /** * * Avatar represents people using icons, labels and images. * * - [Live Demo](https://primeng.dev/avatar) * * @module avatarstyle * */ declare enum AvatarClasses { /** * Class name of the root element */ root = "p-avatar", /** * Class name of the label element */ label = "p-avatar-label", /** * Class name of the icon element */ icon = "p-avatar-icon", /** * Container element in image mode */ image = "p-avatar-image", /** * Container element with a circle shape */ circle = "p-avatar-circle", /** * Container element with a large size */ large = "p-avatar-lg", /** * Container element with an xlarge size */ xlarge = "p-avatar-xl" } /** * Avatar represents people using icons, labels and images. * @group Components */ declare class Avatar extends BaseComponent { componentName: string; $pcAvatar: Avatar | undefined; bindDirectiveInstance: Bind; /** * Defines the text to display. * @group Props */ label: _angular_core.InputSignal; /** * Defines the icon to display. * @group Props */ icon: _angular_core.InputSignal; /** * Defines the image to display. * @group Props */ image: _angular_core.InputSignal; /** * Size of the element. * @group Props */ size: _angular_core.InputSignal; /** * Shape of the element. * @group Props */ shape: _angular_core.InputSignal; /** * Establishes a string value that labels the component. * @group Props */ ariaLabel: _angular_core.InputSignal; /** * Establishes relationships between the component and label(s) where its value should be one or more element IDs. * @group Props */ ariaLabelledBy: _angular_core.InputSignal; /** * This event is triggered if an error occurs while loading an image file. * @param {Event} event - Browser event. * @group Emits */ onImageError: _angular_core.OutputEmitterRef; _componentStyle: AvatarStyle; dataP: _angular_core.Signal; onAfterViewChecked(): void; imageError(event: Event): void; static ɵfac: _angular_core.ɵɵFactoryDeclaration; static ɵcmp: _angular_core.ɵɵComponentDeclaration; } declare class AvatarModule { static ɵfac: _angular_core.ɵɵFactoryDeclaration; static ɵmod: _angular_core.ɵɵNgModuleDeclaration; static ɵinj: _angular_core.ɵɵInjectorDeclaration; } export { Avatar, AvatarClasses, AvatarModule, AvatarStyle };