import type { UAProperty } from "node-opcua-address-space-base";
import type { DataType } from "node-opcua-variant";
import type { DTAxisInformation } from "./dt_axis_information";
import type { UAArrayItem, UAArrayItem_Base } from "./ua_array_item";
/**
 * |                |                                                            |
 * |----------------|------------------------------------------------------------|
 * |namespace       |http://opcfoundation.org/UA/                                |
 * |nodeClass       |VariableType                                                |
 * |typedDefinition |CubeItemType i=12057                                        |
 * |dataType        |Null                                                        |
 * |dataType Name   |VariantOptions[] i=0                                        |
 * |value rank      |3                                                           |
 * |isAbstract      |false                                                       |
 */
export interface UACubeItem_Base<T, DT extends DataType> extends UAArrayItem_Base<T, DT> {
    xAxisDefinition: UAProperty<DTAxisInformation, DataType.ExtensionObject>;
    yAxisDefinition: UAProperty<DTAxisInformation, DataType.ExtensionObject>;
    zAxisDefinition: UAProperty<DTAxisInformation, DataType.ExtensionObject>;
}
export interface UACubeItem<T, DT extends DataType> extends UAArrayItem<T, DT>, UACubeItem_Base<T, DT> {
}
