import { SecurityTypeWPAEnum } from '../xdslModemConfig/SecurityTypeWPAEnum';
/** Wifi Ssid Configuration of the Modem */
export interface Ssid {
    /** Indicates whether SSID is advertised */
    advertised: boolean;
    /** Wifi SSID state */
    enabled: boolean;
    /** Indicates whether SSID is a guest network */
    guest: boolean;
    /** Indicates whether clients are restricted to access LAN */
    isolated: boolean;
    /** SSID security key */
    securityKey: string;
    /** SSID security mode */
    securityMode: SecurityTypeWPAEnum;
    /** SSID */
    ssid: string;
    /** Possible security mode for the selected SSID */
    supportedSecurityMode: SecurityTypeWPAEnum[];
    /** Name of the SSID */
    wifiName: string;
}
//# sourceMappingURL=Ssid.d.ts.map