import type { UAString, UInt32 } from "node-opcua-basic-types";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { DTKeyValuePair } from "./dt_key_value_pair";
import type { DTRolePermission } from "./dt_role_permission";
import type { DTStructure } from "./dt_structure";
/**
 * |           |                                                            |
 * |-----------|------------------------------------------------------------|
 * | namespace |http://opcfoundation.org/UA/                                |
 * | nodeClass |DataType                                                    |
 * | name      |SecurityGroupDataType                                       |
 * | isAbstract|false                                                       |
 */
export interface DTSecurityGroup extends DTStructure {
    name: UAString;
    securityGroupFolder: UAString[];
    keyLifetime: number;
    securityPolicyUri: UAString;
    maxFutureKeyCount: UInt32;
    maxPastKeyCount: UInt32;
    securityGroupId: UAString;
    rolePermissions: DTRolePermission[];
    groupProperties: DTKeyValuePair[];
}
export interface UDTSecurityGroup extends ExtensionObject, DTSecurityGroup {
}
