import type { UAProperty } from "node-opcua-address-space-base";
import type { UInt32 } from "node-opcua-basic-types";
import type { DataType } from "node-opcua-variant";
import type { UADataSetReaderMessage, UADataSetReaderMessage_Base } from "./ua_data_set_reader_message";
/**
 * |                |                                                            |
 * |----------------|------------------------------------------------------------|
 * |namespace       |http://opcfoundation.org/UA/                                |
 * |nodeClass       |ObjectType                                                  |
 * |typedDefinition |JsonDataSetReaderMessageType i=21130                        |
 * |isAbstract      |false                                                       |
 */
export interface UAJsonDataSetReaderMessage_Base extends UADataSetReaderMessage_Base {
    networkMessageContentMask: UAProperty<UInt32, DataType.UInt32>;
    dataSetMessageContentMask: UAProperty<UInt32, DataType.UInt32>;
}
export interface UAJsonDataSetReaderMessage extends UADataSetReaderMessage, UAJsonDataSetReaderMessage_Base {
}
