import type { UAString, UInt32 } from "node-opcua-basic-types";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { DTDataSetReader } from "./dt_data_set_reader";
import type { DTEndpointDescription } from "./dt_endpoint_description";
import type { DTKeyValuePair } from "./dt_key_value_pair";
import type { DTPubSubGroup } from "./dt_pub_sub_group";
import type { DTReaderGroupMessage } from "./dt_reader_group_message";
import type { DTReaderGroupTransport } from "./dt_reader_group_transport";
import type { EnumMessageSecurityMode } from "./enum_message_security_mode";
/**
 * |           |                                                            |
 * |-----------|------------------------------------------------------------|
 * | namespace |http://opcfoundation.org/UA/                                |
 * | nodeClass |DataType                                                    |
 * | name      |ReaderGroupDataType                                         |
 * | isAbstract|false                                                       |
 */
export interface DTReaderGroup extends DTPubSubGroup {
    name: UAString;
    enabled: boolean;
    securityMode: EnumMessageSecurityMode;
    securityGroupId: UAString;
    securityKeyServices: DTEndpointDescription[];
    maxNetworkMessageSize: UInt32;
    groupProperties: DTKeyValuePair[];
    transportSettings?: DTReaderGroupTransport;
    messageSettings?: DTReaderGroupMessage;
    dataSetReaders: DTDataSetReader[];
}
export interface UDTReaderGroup extends ExtensionObject, DTReaderGroup {
}
