import { EventEmitter } from '@angular/core'; import { PillProps } from '@kite_aerolab/shared/components'; export declare class PillComponent implements PillProps { /** * Tamaño del pill: sm, md o lg */ size: PillProps['size']; /** * Indicador de si el pill está deshabilitado */ isDisabled: PillProps['isDisabled']; /** * indicador de si el pill está activo */ isActive: PillProps['isActive']; /** * indicador de si el pill es removible (le agrega el botón de close) */ isRemovable: PillProps['isRemovable']; /** * CSS del componente */ css: PillProps['css']; /** * ícono del pill */ icon: PillProps['icon']; onClick: EventEmitter; get pillStyles(): string[]; get closeActionHighlighted(): any; } //# sourceMappingURL=pill.component.d.ts.map