export declare const DestinationExpressionType: {
    readonly RuleName: "RuleName";
    readonly MqttTopic: "MqttTopic";
    readonly SnsTopic: "SnsTopic";
};
/**
 * Must be RuleName
 */
export type DestinationExpressionType = (typeof DestinationExpressionType)[keyof typeof DestinationExpressionType];
export declare const NetworkAnalyzerConfigurationLogLevel: {
    readonly Info: "INFO";
    readonly Error: "ERROR";
    readonly Disabled: "DISABLED";
};
export type NetworkAnalyzerConfigurationLogLevel = (typeof NetworkAnalyzerConfigurationLogLevel)[keyof typeof NetworkAnalyzerConfigurationLogLevel];
export declare const NetworkAnalyzerConfigurationWirelessDeviceFrameInfo: {
    readonly Enabled: "ENABLED";
    readonly Disabled: "DISABLED";
};
export type NetworkAnalyzerConfigurationWirelessDeviceFrameInfo = (typeof NetworkAnalyzerConfigurationWirelessDeviceFrameInfo)[keyof typeof NetworkAnalyzerConfigurationWirelessDeviceFrameInfo];
export declare const TaskDefinitionType: {
    readonly Update: "UPDATE";
};
/**
 * A filter to list only the wireless gateway task definitions that use this task definition type
 */
export type TaskDefinitionType = (typeof TaskDefinitionType)[keyof typeof TaskDefinitionType];
export declare const WirelessDeviceApplicationType: {
    readonly SemtechGeolocation: "SemtechGeolocation";
    readonly SemtechGnss: "SemtechGNSS";
    readonly SemtechGnssng: "SemtechGNSSNG";
    readonly SemtechWiFi: "SemtechWiFi";
};
/**
 * Application type, which can be specified to obtain real-time position information of your LoRaWAN device.
 */
export type WirelessDeviceApplicationType = (typeof WirelessDeviceApplicationType)[keyof typeof WirelessDeviceApplicationType];
export declare const WirelessDevicePositioning: {
    readonly Enabled: "Enabled";
    readonly Disabled: "Disabled";
};
/**
 * FPort values for the GNSS, stream, and ClockSync functions of the positioning information.
 */
export type WirelessDevicePositioning = (typeof WirelessDevicePositioning)[keyof typeof WirelessDevicePositioning];
export declare const WirelessDeviceType: {
    readonly Sidewalk: "Sidewalk";
    readonly LoRaWan: "LoRaWAN";
};
/**
 * Wireless device type, currently only Sidewalk and LoRa
 */
export type WirelessDeviceType = (typeof WirelessDeviceType)[keyof typeof WirelessDeviceType];
