import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { PliTag, TagTo } from 'ng-pli-util'; import * as i0 from "@angular/core"; export declare class PliTagService { private environment; private httpClient; private headerJson; constructor(environment: any, httpClient: HttpClient); /** It returns a list of tag by name */ getTagByNameLike(nameLike: string): Observable; /** Saves a tag with its associated segmentation records */ save(tag: PliTag, applicationIds: string[]): Observable; saveTagQueue(tag: TagTo): Observable; /** Deletes a tag from its associated segmentation records */ deleteTagFromSegmentationList(tagName: string, applicationIds: string[]): Observable; /** Deletes a list of tags from an associated segmentation record */ deleteTagsFromSegmentation(applicationId: string, tagNames: string[]): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }