import { OnInit } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; import { Observable } from 'rxjs'; import { AbstractStoreItemComponent } from '../abstract-store-item/abstract-store-item.component'; import { StoreDataService, StoreFinderService } from '@spartacus/core'; export declare class StoreFinderStoreDescriptionComponent extends AbstractStoreItemComponent implements OnInit { protected storeDataService: StoreDataService; protected storeFinderService: StoreFinderService; private route; location$: Observable; isLoading$: Observable; constructor(storeDataService: StoreDataService, storeFinderService: StoreFinderService, route: ActivatedRoute); ngOnInit(): void; requestStoresData(): void; }