import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { ApiUtilsService } from './api-utils.service'; import { PageWinePalletDto, TagStatusDto, WinePalletDto } from '../domain'; export declare class WinePalletControllerService { private _serverUrl; private _httpClient; private _apiUtils; constructor(_serverUrl: string, _httpClient: HttpClient, _apiUtils: ApiUtilsService); private _headers; addCustomHeader(headerName: string, headerValue: string | string[]): this; addBoxToPallet(tid: string, queryParams: { boxTid: string; }): Observable; checkTagStatus1(tid: string): Observable; createNewWinePallet(queryParams: { userLegalEntityId: number; }, requestBody: WinePalletDto): Observable; getWinePalletById(id: number): Observable; getWinePalletByTid(tid: string): Observable; loadPageByProducer1(orgUnitId: number, queryParams: { userLegalEntityId: number; page?: number; size?: number; sort?: Array; }): Observable; removeBoxFromPallet(tid: string, queryParams: { boxTid: string; }): Observable; }