import { ChannelModeEnum } from './xdslModemConfig/ChannelModeEnum';
import { FrequencyEnum } from './xdslModemConfig/FrequencyEnum';
/** Wifi Radio Configuration of the Modem */
export interface WifiRadio {
    /** Current radio channel */
    channel: number;
    /** Current bandwidth of operating channel */
    channelBandwidth: string;
    /** Change channel selection mode (auto | manual) */
    channelMode: ChannelModeEnum;
    /** Wifi Radio state */
    enabled: boolean;
    /** Frequency (2.4GHz | 5GHz) */
    frequency: FrequencyEnum;
    /** The maximum bitrate supported by this interface in Mbps */
    maxBitRate: number;
    /** Name of the Wifi Radio */
    radioName: string;
    /** Current radio IEEE 802.11 standards */
    standards: string;
    /** Supported channels by this radio */
    supportedChannels: number[];
    /** Supported transmit power levels as percentage of full power */
    supportedPowers: number[];
    /** Supported IEEE 802.11 standards by this radio */
    supportedStandards: string[];
    /** Current transmit power level */
    transmitPower: number;
}
//# sourceMappingURL=WifiRadio.d.ts.map