/*** * @module node-opcua-basic-types */ import type { BinaryStream, OutputBinaryStream } from "node-opcua-binary-stream"; import { type UAString } from "./string"; export declare function validateLocaleId(_value: unknown): boolean; export type LocaleId = UAString; export declare function encodeLocaleId(localeId: LocaleId, stream: OutputBinaryStream): void; export declare function decodeLocaleId(stream: BinaryStream): LocaleId;