import type { Guid, UAString } from "node-opcua-basic-types";
import type { LocalizedText } from "node-opcua-data-model";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { DTConfigurationVersion } from "./dt_configuration_version";
import type { DTDataTypeSchemaHeader } from "./dt_data_type_schema_header";
import type { DTEnumDescription } from "./dt_enum_description";
import type { DTFieldMetaData } from "./dt_field_meta_data";
import type { DTSimpleTypeDescription } from "./dt_simple_type_description";
import type { DTStructureDescription } from "./dt_structure_description";
/**
 * |           |                                                            |
 * |-----------|------------------------------------------------------------|
 * | namespace |http://opcfoundation.org/UA/                                |
 * | nodeClass |DataType                                                    |
 * | name      |DataSetMetaDataType                                         |
 * | isAbstract|false                                                       |
 */
export interface DTDataSetMeta extends DTDataTypeSchemaHeader {
    namespaces: UAString[];
    structureDataTypes: DTStructureDescription[];
    enumDataTypes: DTEnumDescription[];
    simpleDataTypes: DTSimpleTypeDescription[];
    name: UAString;
    description: LocalizedText;
    fields: DTFieldMetaData[];
    dataSetClassId: Guid;
    configurationVersion: DTConfigurationVersion;
}
export interface UDTDataSetMeta extends ExtensionObject, DTDataSetMeta {
}
