import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export declare class TraceContent { WirelessDeviceFrameInfo?: Value; LogLevel?: Value; constructor(properties: TraceContent); } export interface NetworkAnalyzerConfigurationProperties { Description?: Value; TraceContent?: TraceContent; WirelessGateways?: List>; WirelessDevices?: List>; Tags?: List; Name: Value; } export default class NetworkAnalyzerConfiguration extends ResourceBase { static TraceContent: typeof TraceContent; constructor(properties: NetworkAnalyzerConfigurationProperties); }