import { AfterContentInit, EventEmitter, QueryList, TemplateRef } from '@angular/core'; import { PrimeNGConfig, PrimeTemplate } from 'primeng/api'; import * as i0 from "@angular/core"; import * as i1 from "@angular/common"; import * as i2 from "primeng/icons/timescircle"; import * as i3 from "primeng/api"; /** * Chip represents people using icons, labels and images. * @group Components */ export declare class Chip implements AfterContentInit { /** * Defines the text to display. * @group Props */ label: string | undefined; /** * Defines the icon to display. * @group Props */ icon: string | undefined; /** * Defines the image to display. * @group Props */ image: string | undefined; /** * Alt attribute of the image. * @group Props */ alt: string | undefined; /** * Inline style of the element. * @group Props */ style: { [klass: string]: any; } | null | undefined; /** * Class of the element. * @group Props */ styleClass: string | undefined; /** * Whether to display a remove icon. * @group Props */ removable: boolean | undefined; /** * Icon of the remove element. * @group Props */ removeIcon: string | undefined; /** * Callback to invoke when a chip is removed. * @param {MouseEvent} event - Mouse event. * @group Emits */ onRemove: EventEmitter; /** * This event is triggered if an error occurs while loading an image file. * @param {Event} event - Browser event. * @group Emits */ onImageError: EventEmitter; config: PrimeNGConfig; visible: boolean; removeIconTemplate: TemplateRef | undefined; get removeAriaLabel(): any; templates: QueryList | undefined; ngAfterContentInit(): void; containerClass(): { 'p-chip p-component': boolean; 'p-chip-image': boolean; }; close(event: MouseEvent): void; onKeydown(event: any): void; imageError(event: Event): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; static ngAcceptInputType_removable: unknown; } export declare class ChipModule { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵmod: i0.ɵɵNgModuleDeclaration; static ɵinj: i0.ɵɵInjectorDeclaration; }