import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
 * ## Example Usage
 *
 * ## Import
 *
 * ```sh
 * $ pulumi import meraki:networks/wirelessSettings:WirelessSettings example "network_id"
 * ```
 */
export declare class WirelessSettings extends pulumi.CustomResource {
    /**
     * Get an existing WirelessSettings resource's state with the given name, ID, and optional extra
     * properties used to qualify the lookup.
     *
     * @param name The _unique_ name of the resulting resource.
     * @param id The _unique_ provider ID of the resource to lookup.
     * @param state Any extra arguments used during the lookup.
     * @param opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, state?: WirelessSettingsState, opts?: pulumi.CustomResourceOptions): WirelessSettings;
    /**
     * Returns true if the given object is an instance of WirelessSettings.  This is designed to work even
     * when multiple copies of the Pulumi SDK have been loaded into the same process.
     */
    static isInstance(obj: any): obj is WirelessSettings;
    /**
     * Toggle for enabling or disabling IPv6 bridging in a network (Note: if enabled, SSIDs must also be configured to use bridge mode)
     */
    readonly ipv6BridgeEnabled: pulumi.Output<boolean>;
    /**
     * Toggle for enabling or disabling LED lights on all APs in the network (making them run dark)
     */
    readonly ledLightsOn: pulumi.Output<boolean>;
    /**
     * Toggle for enabling or disabling location analytics for your network
     */
    readonly locationAnalyticsEnabled: pulumi.Output<boolean>;
    /**
     * Toggle for enabling or disabling meshing in a network
     */
    readonly meshingEnabled: pulumi.Output<boolean>;
    /**
     * Named VLAN settings for wireless networks.
     */
    readonly namedVlans: pulumi.Output<outputs.networks.WirelessSettingsNamedVlans>;
    /**
     * networkId path parameter. Network ID
     */
    readonly networkId: pulumi.Output<string>;
    /**
     * Regulatory domain information for this network.
     */
    readonly regulatoryDomain: pulumi.Output<outputs.networks.WirelessSettingsRegulatoryDomain>;
    /**
     * The upgrade strategy to apply to the network. Must be one of 'minimizeUpgradeTime' or 'minimizeClientDowntime'. Requires firmware version MR 26.8 or higher'
     */
    readonly upgradestrategy: pulumi.Output<string>;
    /**
     * Create a WirelessSettings resource with the given unique name, arguments, and options.
     *
     * @param name The _unique_ name of the resource.
     * @param args The arguments to use to populate this resource's properties.
     * @param opts A bag of options that control this resource's behavior.
     */
    constructor(name: string, args: WirelessSettingsArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering WirelessSettings resources.
 */
export interface WirelessSettingsState {
    /**
     * Toggle for enabling or disabling IPv6 bridging in a network (Note: if enabled, SSIDs must also be configured to use bridge mode)
     */
    ipv6BridgeEnabled?: pulumi.Input<boolean>;
    /**
     * Toggle for enabling or disabling LED lights on all APs in the network (making them run dark)
     */
    ledLightsOn?: pulumi.Input<boolean>;
    /**
     * Toggle for enabling or disabling location analytics for your network
     */
    locationAnalyticsEnabled?: pulumi.Input<boolean>;
    /**
     * Toggle for enabling or disabling meshing in a network
     */
    meshingEnabled?: pulumi.Input<boolean>;
    /**
     * Named VLAN settings for wireless networks.
     */
    namedVlans?: pulumi.Input<inputs.networks.WirelessSettingsNamedVlans>;
    /**
     * networkId path parameter. Network ID
     */
    networkId?: pulumi.Input<string>;
    /**
     * Regulatory domain information for this network.
     */
    regulatoryDomain?: pulumi.Input<inputs.networks.WirelessSettingsRegulatoryDomain>;
    /**
     * The upgrade strategy to apply to the network. Must be one of 'minimizeUpgradeTime' or 'minimizeClientDowntime'. Requires firmware version MR 26.8 or higher'
     */
    upgradestrategy?: pulumi.Input<string>;
}
/**
 * The set of arguments for constructing a WirelessSettings resource.
 */
export interface WirelessSettingsArgs {
    /**
     * Toggle for enabling or disabling IPv6 bridging in a network (Note: if enabled, SSIDs must also be configured to use bridge mode)
     */
    ipv6BridgeEnabled?: pulumi.Input<boolean>;
    /**
     * Toggle for enabling or disabling LED lights on all APs in the network (making them run dark)
     */
    ledLightsOn?: pulumi.Input<boolean>;
    /**
     * Toggle for enabling or disabling location analytics for your network
     */
    locationAnalyticsEnabled?: pulumi.Input<boolean>;
    /**
     * Toggle for enabling or disabling meshing in a network
     */
    meshingEnabled?: pulumi.Input<boolean>;
    /**
     * Named VLAN settings for wireless networks.
     */
    namedVlans?: pulumi.Input<inputs.networks.WirelessSettingsNamedVlans>;
    /**
     * networkId path parameter. Network ID
     */
    networkId: pulumi.Input<string>;
    /**
     * The upgrade strategy to apply to the network. Must be one of 'minimizeUpgradeTime' or 'minimizeClientDowntime'. Requires firmware version MR 26.8 or higher'
     */
    upgradestrategy?: pulumi.Input<string>;
}
