import { HttpClient } from '@angular/common/http'; import { BaseApiTemplateService } from '../shared/base-api-template-service.model'; import { ApiResponseModel, ApiVisa } from "../shared"; import { Observable } from "rxjs"; import { PgwLabelListContainerModel } from '../../../../../models'; import { PgwLabelQueryCriteriaClass } from '../../criteria'; export declare class PgwLabelListService extends BaseApiTemplateService { readonly url: string; constructor(http: HttpClient); getByCriteriaObservable(visa: ApiVisa, criteria?: PgwLabelQueryCriteriaClass): Observable>; }