import type { attributes } from './attributes'; import type { CommonDisplayName } from './CommonDisplayName'; import type { CommonName } from './CommonName'; import type { ConfigState } from './ConfigState'; import type { EnvironmentService } from './EnvironmentService'; import type { MsgVpnAclProfile } from './MsgVpnAclProfile'; import type { MsgVpnAuthorizationGroup } from './MsgVpnAuthorizationGroup'; import type { MsgVpnClientProfile } from './MsgVpnClientProfile'; import type { MsgVpnClientUsernameArray } from './MsgVpnClientUsernameArray'; import type { MsgVpnMqttSession } from './MsgVpnMqttSession'; import type { MsgVpnQueue } from './MsgVpnQueue'; import type { MsgVpnRestDeliveryPoint } from './MsgVpnRestDeliveryPoint'; import type { Tags } from './Tags'; export declare type AppConfigSet = { name: CommonName; displayName: CommonDisplayName; state?: ConfigState; aclProfile: MsgVpnAclProfile; clientProfile: MsgVpnClientProfile; clientUsernames: MsgVpnClientUsernameArray; authorizationGroup: MsgVpnAuthorizationGroup; mqttSession?: MsgVpnMqttSession; queues?: Array; restDeliveryPoints?: Array; services: Array; attributes?: attributes; tags?: Tags; };