/** * @module node-opcua-address-space.DataAccess */ import type { DataValue } from "node-opcua-data-value"; import { type StatusCode } from "node-opcua-status-code"; import type { UAVariableImpl } from "../ua_variable_impl"; export declare function adjustDataValueStatusCode(variable: UAVariableImpl, dataValue: DataValue, acceptValueOutOfRange: boolean): StatusCode;