import { ContentCodec, DataSchema } from "@node-wot/core"; import { DataValue } from "node-opcua-data-value"; import { DataValueJSON } from "node-opcua-json"; export declare class OpcuaBinaryCodec implements ContentCodec { getMediaType(): string; bytesToValue(bytes: Buffer, schema: DataSchema, parameters?: { [key: string]: string; }): DataValueJSON; valueToBytes(dataValue: DataValueJSON | DataValue, schema: DataSchema, parameters?: { [key: string]: string; }): Buffer; } export declare const theOpcuaBinaryCodec: OpcuaBinaryCodec;