import { AnsibleService } from "./ansible.service"; import { BashService } from "./bash.service"; import { LoggerService } from "./logger.service"; export declare class WapService { private loggerService; private ansibleService; private bashService; private running; private lastTimeEthernetAlive; private wifiSSID; private wifiPassword; private ledfirtLoadWaiting; private ledWapEnabledInterval; private ledWapTick; private firstLoad; private firstLaunchTime; constructor(loggerService: LoggerService, ansibleService: AnsibleService, bashService: BashService); run(): Promise; hasWifiConnectedOnBox(): Promise; hotSpotIsActive(): Promise; startHotSpot(): Promise; stopHotSpot(): Promise; ethernetIsAlive(): Promise; wifiIsActive(): Promise; getWifiList(): Promise; connectToWifi(ssid: string, password: string): Promise; private runLed; private stopLed; }