import { StreamableFile } from '@nestjs/common'; import { WapService } from './shared/wap.service'; import { BashService } from './shared/bash.service'; import { ApiService } from './api.service'; import { PropertiesService } from './shared/storage/properties.service'; import { BindService } from './shared/bind.service'; export declare class ApiController { private wapService; private bashService; private apiService; private bindService; private propertiesService; constructor(wapService: WapService, bashService: BashService, apiService: ApiService, bindService: BindService, propertiesService: PropertiesService); favicon(): StreamableFile; get(): any; wifiList(): Promise; plateformId(): Promise; setWifi(body: { name: string; ssid: string; password: string; }): Promise; keepixInformation(): Promise<{ version: string; latestVersion: any; platformId: string; platform: string; }>; restart(): Promise; update(version?: string): Promise<{ success: boolean; description: string; }>; }