import { ElementRef, OnInit, TemplateRef } from '@angular/core'; import { AbstractNgModel } from '../../models/abstract.ngmodel'; import { TranslateService } from '@ngx-translate/core'; import { SharedService } from '../../models/sharedService'; import { Http } from '@angular/http'; export declare class ListOptions extends AbstractNgModel implements OnInit { _http: Http; private _translateService; private _el; constructor(_sharedService: SharedService, _http: Http, _translateService: TranslateService, _el: ElementRef); idListOption: any; value: any; el: any; columnTemplate: TemplateRef; private content; ngOnInit(): void; ngAfterViewInit(): void; }