import type { UAString, UInt32 } from "node-opcua-basic-types";
import type { QualifiedName } from "node-opcua-data-model";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { NodeId } from "node-opcua-nodeid";
import type { Variant } from "node-opcua-variant";
import type { DTStructure } from "./dt_structure";
/**
 * |           |                                                            |
 * |-----------|------------------------------------------------------------|
 * | namespace |http://opcfoundation.org/UA/                                |
 * | nodeClass |DataType                                                    |
 * | name      |PublishedVariableDataType                                   |
 * | isAbstract|false                                                       |
 */
export interface DTPublishedVariable extends DTStructure {
    publishedVariable: NodeId;
    attributeId: UInt32;
    samplingIntervalHint: number;
    deadbandType: UInt32;
    deadbandValue: number;
    indexRange: UAString;
    substituteValue: Variant;
    metaDataProperties: QualifiedName[];
}
export interface UDTPublishedVariable extends ExtensionObject, DTPublishedVariable {
}
