import type { UAString } from "node-opcua-basic-types";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { DTDataSetMeta } from "./dt_data_set_meta";
import type { DTSubscribedDataSet } from "./dt_subscribed_data_set";
/**
 * |           |                                                            |
 * |-----------|------------------------------------------------------------|
 * | namespace |http://opcfoundation.org/UA/                                |
 * | nodeClass |DataType                                                    |
 * | name      |StandaloneSubscribedDataSetDataType                         |
 * | isAbstract|false                                                       |
 */
export interface DTStandaloneSubscribedDataSet extends DTSubscribedDataSet {
    name: UAString;
    dataSetFolder: UAString[];
    dataSetMetaData: DTDataSetMeta;
    subscribedDataSet?: DTSubscribedDataSet;
}
export interface UDTStandaloneSubscribedDataSet extends ExtensionObject, DTStandaloneSubscribedDataSet {
}
