import { OnInit, ElementRef, TemplateRef } from '@angular/core'; import { FocusableOption } from '@angular/cdk/a11y'; export declare class ResultItemComponent implements OnInit, FocusableOption { private el; _disabled: boolean; label: string; disabled: boolean; highlight: boolean; context: { [key: string]: any; }; prefix: TemplateRef; suffix: TemplateRef; readonly wrapperClasses: { ['content--highlight']: boolean; }; constructor(el: ElementRef); ngOnInit(): void; getLabel(): string; focus(): void; }