import { EventEmitter, OnInit } from '@angular/core'; import { CollectionService, LanguageService, TaxonService } from '../../../../services'; import { Product, Taxon } from '../../../../classes'; import { Router } from '@angular/router'; import * as i0 from "@angular/core"; export declare class SearchBaseComponent implements OnInit { protected languageService: LanguageService; protected _router: Router; protected taxonService: TaxonService; collectionService: CollectionService; searchFired$: EventEmitter; taxons: Taxon[]; selectedTaxon: any; term: string; autoCompleteList: boolean; completeToThose: Product[]; params: {}; language: {}; currentUrl: string; redirectUrl: string; products: string[]; page: number; showNoAvaliableStatus: boolean; autoComplete: boolean; showAllProducts: boolean; constructor(languageService: LanguageService, _router: Router, taxonService: TaxonService, collectionService: CollectionService); ngOnInit(): void; readUrl(): void; changed(term: any): void; serchResult(e: any): void; focusOutFunction(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }