import { OnInit } from '@angular/core'; import { FormControl } from '@angular/forms'; import { HalDocumentService } from 'hateoas-navigator'; import { Observable } from 'rxjs'; import { LinkField } from 'hateoas-navigator'; /** * Currently the input's title is not shown due to https://github.com/angular/material2/issues/4863. */ export declare class AssociationFieldComponent implements OnInit { private halDocumentService; field: LinkField; control: FormControl; filteredItems: Observable>; constructor(halDocumentService: HalDocumentService); ngOnInit(): void; private filterValues(value, items); private initItems(); } export interface LinkItem { name: string; title: string; }