import { ElementRef, EventEmitter, TemplateRef, OnInit } from '@angular/core'; /** * Angular 2 Mentions. * https://github.com/dmacfarlane/angular-mentions * * Copyright (c) 2016 Dan MacFarlane */ export declare class MentionListComponent implements OnInit { private element; labelKey: string; itemTemplate: TemplateRef; itemClick: EventEmitter<{}>; list: ElementRef; defaultItemTemplate: TemplateRef; items: any[]; activeIndex: number; hidden: boolean; private blockCursorSize; constructor(element: ElementRef); ngOnInit(): void; position(nativeParentElement: HTMLInputElement, iframe: HTMLIFrameElement, dropUp: boolean): void; readonly activeItem: any; activateNextItem(): void; activatePreviousItem(): void; resetScroll(): void; private getBlockCursorDimensions; }