import { EventEmitter, OnInit, ElementRef, AfterViewInit } from '@angular/core'; import { SearchMode } from '../searcher/searcher.component'; import { Toggler } from 'projects/exi-ui/src/lib/utils/toggler.class'; import { Options } from '../options/options.component'; import { FocusOut } from 'projects/exi-ui/src/lib/utils/focusOut.class'; import { Tag } from '../../table/utility/context/local/filter.class'; export declare class TagComponent implements OnInit, AfterViewInit { wrapper: ElementRef; tag: Tag; disabled: boolean; onDelete: EventEmitter; onModeChange: EventEmitter; toggler: Toggler; focusOut: FocusOut; modes: Options; ngOnInit(): void; ngAfterViewInit(): void; delete(tag: D): void; }