import type { SByte } from "node-opcua-basic-types";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { DTStructure } from "./dt_structure";
/**
 * |           |                                                            |
 * |-----------|------------------------------------------------------------|
 * | namespace |http://opcfoundation.org/UA/                                |
 * | nodeClass |DataType                                                    |
 * | name      |QuantityDimension                                           |
 * | isAbstract|false                                                       |
 */
export interface DTQuantityDimension extends DTStructure {
    massExponent: SByte;
    lengthExponent: SByte;
    timeExponent: SByte;
    electricCurrentExponent: SByte;
    amountOfSubstanceExponent: SByte;
    luminousIntensityExponent: SByte;
    absoluteTemperatureExponent: SByte;
    dimensionlessExponent: SByte;
}
export interface UDTQuantityDimension extends ExtensionObject, DTQuantityDimension {
}
