type WIFI_CONFIG_AP_MODE = 0 | 1 | 2 | 3;
declare const WIFI_CONFIG_AP_MODE_UNDEFINED: 0;
declare const WIFI_CONFIG_AP_MODE_AP: 1;
declare const WIFI_CONFIG_AP_MODE_STATION: 2;
declare const WIFI_CONFIG_AP_MODE_DISABLED: 3;

export { WIFI_CONFIG_AP_MODE_AP, WIFI_CONFIG_AP_MODE_DISABLED, WIFI_CONFIG_AP_MODE_STATION, WIFI_CONFIG_AP_MODE_UNDEFINED };
export type { WIFI_CONFIG_AP_MODE };
