import type { EUInformation } from "node-opcua-data-access";
import type { LocalizedText } from "node-opcua-data-model";
import type { ExtensionObject } from "node-opcua-extension-object";
import type { DTRange } from "./dt_range";
import type { DTStructure } from "./dt_structure";
import type { EnumAxisScale } from "./enum_axis_scale";
/**
 * |           |                                                            |
 * |-----------|------------------------------------------------------------|
 * | namespace |http://opcfoundation.org/UA/                                |
 * | nodeClass |DataType                                                    |
 * | name      |AxisInformation                                             |
 * | isAbstract|false                                                       |
 */
export interface DTAxisInformation extends DTStructure {
    engineeringUnits: EUInformation;
    euRange: DTRange;
    title: LocalizedText;
    axisScaleType: EnumAxisScale;
    axisSteps: number[];
}
export interface UDTAxisInformation extends ExtensionObject, DTAxisInformation {
}
