import { OnInit, EventEmitter, Injector } from '@angular/core'; import { FormGroup, FormControl } from '@angular/forms'; import 'rxjs/add/operator/debounceTime'; import 'rxjs/add/operator/distinctUntilChanged'; import { OTranslateService } from '../../services'; export declare const DEFAULT_INPUTS_O_SEARCH_INPUT: string[]; export declare const DEFAULT_OUTPUTS_O_SEARCH_INPUT: string[]; export declare class OSearchInputComponent implements OnInit { protected injector: Injector; static DEFAULT_INPUTS_O_SEARCH_INPUT: string[]; static DEFAULT_OUTPUTS_O_SEARCH_INPUT: string[]; protected placeholder: string; onSearch: EventEmitter; protected formGroup: FormGroup; protected term: FormControl; protected value: string; protected translateService: OTranslateService; constructor(injector: Injector); ngOnInit(): void; getFormGroup(): FormGroup; getValue(): string; placeHolder: string; } export declare class OSearchInputModule { }