import { HttpClient } from "@angular/common/http"; import { PublicService } from "./public.service"; import { BaseAuthService } from "./base-auth.service"; import { PlannedStop } from "./models/plannedStop"; import { DataBlock } from "./models/dataBlock"; import { Device, DeviceShort, MachinesDevices } from './models/device'; import * as i0 from "@angular/core"; export declare class DeviceService extends BaseAuthService { publicService: PublicService; private httpClient; protected env: any; constructor(publicService: PublicService, httpClient: HttpClient, env: any); protected getBasePath(): string; getDeviceRaw(): import("rxjs").Observable; getDevicesMachinesRaw(): import("rxjs").Observable; getDevice(id: string): import("rxjs").Observable; getMachineDevices(id: string): import("rxjs").Observable; getTablesPrefix(machineId: string): import("rxjs").Observable; putDevice(id: string, device: any): import("rxjs").Observable; postDevice(device: any, id: string): import("rxjs").Observable; getMachineStop(machineId: string, machineStopId: string): import("rxjs").Observable; putMachineStop(machineId: string, body: any): import("rxjs").Observable; postMachineStop(machineId: string, body: any): import("rxjs").Observable; getStopTypes(): import("rxjs").Observable; getPlannedStops(): import("rxjs").Observable; getPlannedStop(id: string): import("rxjs").Observable; postPlannedStop(body: any): import("rxjs").Observable; putPlannedStop(body: any): import("rxjs").Observable; getConfig(deviceId: string): import("rxjs").Observable; putConfig(deviceId: string, body: any): import("rxjs").Observable; askConfig(deviceId: string): import("rxjs").Observable; getDataBlocksFromDevice(deviceId: string): import("rxjs").Observable; getDatasFromDataBlock(deviceId: string, dataBlockId: string): import("rxjs").Observable; getBitsFromDatas(deviceId: string, dataBlockId: string, dataId: string): import("rxjs").Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }