export type WlanBssEntry = { ssid: string | null; bssid: string; channelFrequency: number; signal: number; /** * true if the network is a saved profile */ known: boolean; /** * true if the network is encrypted like WEP, WPA, or WPA2 */ secured: boolean; /** * true if the interface is connected to this network */ connected: boolean; /** * true if the interface is connected to this network and is using this channel frequency */ connectedChannel: boolean; }; //# sourceMappingURL=WlanBssEntry.d.ts.map