export type WlanBssEntry = { /** * None for hidden networks (SSID not broadcast) */ ssid: string | null; bssid: string; /** * Channel center frequency in kHz */ channelFrequency: number; /** * Signal strength 0–100 (derived from WinRT SignalBars × 20) */ signal: number; /** * true if Windows has a saved profile for this network */ known: boolean; /** * true if the network requires authentication (WEP/WPA/WPA2/WPA3) */ secured: boolean; /** * Human-readable authentication type, e.g. "WPA2-Personal", "Open" */ auth: string; /** * true if currently connected to this network */ connected: boolean; }; //# sourceMappingURL=WlanBssEntry.d.ts.map