import { NetworkType } from "./cordova-interface"; import { ServiceType } from "./service-discovery/cordova-interface"; export declare type CordovaWifiScanResult = NetworkType; export declare type CordovaNetworkScanResult = ServiceType & { host: string | undefined; }; export interface WifiComProtocolOptionsNetwork { SSID: string; password?: string; algorithm?: string; hidden?: boolean; } export interface WifiComProtocolOptions { socket: { url: string; }; network?: WifiComProtocolOptionsNetwork; }