import { HttpClient } from '@angular/common/http'; import { BehaviorSubject, Observable } from 'rxjs'; import { Filter, Taxon } from '../classes/filter'; import { Params, Router } from '@angular/router'; import { LanguageService } from './language.service'; import { Product } from '../classes/product'; import { TaxonService } from './taxon.service'; import { Categories } from '../classes/Categories'; import { FacebookPixelService } from './facebookPixel.service'; import { ConfService } from './conf.service'; import * as i0 from "@angular/core"; export declare class ShopService { private _http; private _router; private languageService; protected confService: ConfService; private taxonService; private fbService; pages_count: BehaviorSubject; productsCount: BehaviorSubject; filter: BehaviorSubject; defaultLimit: number; params: Params; params$: BehaviorSubject; taxons: Taxon[]; id: number; homePageItems: BehaviorSubject; loading: boolean; gridClassSubject: BehaviorSubject; hasViewMoreBtn: BehaviorSubject; array: string[]; primitive: string[]; constructor(_http: HttpClient, _router: Router, languageService: LanguageService, confService: ConfService, taxonService: TaxonService, fbService: FacebookPixelService); static implode(options: string[]): string; static explode(options: string): string[]; postData(url?: string, data?: {}): Promise>; getCollection(params: any, listenToChanges?: boolean): Observable; getCollectionForAutocomplete(params: any): Observable; changeTaxon(taxon: string, addRemove: boolean): void; changeFilter(type: string, option: string, value: string, addRemove: boolean): void; setParams(params: Params): void; changeX(x: string, value: string | boolean): void; changeSort(sort: any, order: any): void; filterOptions(product: Product): Product; is_parent(parentCode: string, childCode: string): boolean; getTaxon(code: string, taxons: any): Taxon; getTaxonFrom(code: string, taxons: Taxon[]): Taxon; private clearTaxonParents; private remove; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }