/**
 * Network type of the camera.
 * Can be acquired by camera.getOptions and set by camera.setOptions.
 */
export declare const NetworkTypeEnum: {
    /** Undefined value */
    readonly UNKNOWN: "UNKNOWN";
    /** Direct mode */
    readonly DIRECT: "DIRECT";
    /** Client mode via WLAN */
    readonly CLIENT: "CLIENT";
    /** Client mode via Ethernet cable */
    readonly ETHERNET: "ETHERNET";
    /** Network is off. This value can be gotten only by plugin. */
    readonly OFF: "OFF";
    /** LTE plan-D */
    readonly LTE_PLAN_D: "LTE_PLAN_D";
    /** LTE plan-DU */
    readonly LTE_PLAN_DU: "LTE_PLAN_DU";
    /** LTE plan01s */
    readonly LTE_PLAN_01S: "LTE_PLAN_01S";
    /** LTE planX3 */
    readonly LTE_PLAN_X3: "LTE_PLAN_X3";
    /** LTE planP1 */
    readonly LTE_PLAN_P1: "LTE_PLAN_P1";
    /** LTE plan-K2 */
    readonly LTE_PLAN_K2: "LTE_PLAN_K2";
    /** LTE plan-K */
    readonly LTE_PLAN_K: "LTE_PLAN_K";
    /**
     * SSID scan mode
     *
     * Switch to CL mode and search for SSID
     */
    readonly SCAN: "SCAN";
};
/** Type definition of NetworkTypeEnum */
export type NetworkTypeEnum = (typeof NetworkTypeEnum)[keyof typeof NetworkTypeEnum];
//# sourceMappingURL=network-type.d.ts.map