import { OnInit } from "@angular/core"; import { Subject } from "rxjs/Subject"; import "rxjs/add/operator/debounceTime"; import "rxjs/add/operator/distinctUntilChanged"; export declare class FilterComponent implements OnInit { placeHolder: string; filterTerms: Subject; isExpanded: boolean; private filterEvt; private openFlag; currentValue: string; flPlaceholder: string; expandMode: boolean; withDivider: boolean; ngOnInit(): void; valueChange(): void; inputFocus(): void; onClick(): void; readonly isShowSearchBox: boolean; }