import type { UInt32 } from "node-opcua-basic-types";
import type { DataType } from "node-opcua-variant";
import type { DTSamplingIntervalDiagnostics } from "./dt_sampling_interval_diagnostics";
import type { UABaseDataVariable, UABaseDataVariable_Base } from "./ua_base_data_variable";
/**
 * |                |                                                            |
 * |----------------|------------------------------------------------------------|
 * |namespace       |http://opcfoundation.org/UA/                                |
 * |nodeClass       |VariableType                                                |
 * |typedDefinition |SamplingIntervalDiagnosticsType i=2165                      |
 * |dataType        |ExtensionObject                                             |
 * |dataType Name   |DTSamplingIntervalDiagnostics i=856                         |
 * |value rank      |-1                                                          |
 * |isAbstract      |false                                                       |
 */
export interface UASamplingIntervalDiagnostics_Base<T extends DTSamplingIntervalDiagnostics> extends UABaseDataVariable_Base<T, DataType.ExtensionObject> {
    samplingInterval: UABaseDataVariable<number, DataType.Double>;
    sampledMonitoredItemsCount: UABaseDataVariable<UInt32, DataType.UInt32>;
    maxSampledMonitoredItemsCount: UABaseDataVariable<UInt32, DataType.UInt32>;
    disabledMonitoredItemsSamplingCount: UABaseDataVariable<UInt32, DataType.UInt32>;
}
export interface UASamplingIntervalDiagnostics<T extends DTSamplingIntervalDiagnostics> extends UABaseDataVariable<T, DataType.ExtensionObject>, UASamplingIntervalDiagnostics_Base<T> {
}
