/**
 * WLAN password state
 */
export declare const WlanPasswordStateEnum: {
    /**
     *  Undefined value
     */
    readonly UNKNOWN: "UNKNOWN";
    /**
     * The WLAN password has not been changed and the initial password is a part of the Theta's serial number.
     */
    readonly SERIAL: "SERIAL";
    /**
     * The WLAN password has not been changed and the initial password is a random string.
     */
    readonly RANDOM: "RANDOM";
    /**
     * The WLAN password has been changed.
     */
    readonly CHANGED: "CHANGED";
};
/** type definition of WlanPasswordStateEnum */
export type WlanPasswordStateEnum = typeof WlanPasswordStateEnum[keyof typeof WlanPasswordStateEnum];
//# sourceMappingURL=wlan-password-state.d.ts.map