/** * @module node-opcua-address-space */ import { type NodesetImageWriterOptions } from "./nodeset_image.js"; import { type NodesetSource } from "./nodeset_source.js"; export interface NodesetToImageOptions extends Pick { } /** * the precompiled image of a NodeSet2 document, built from the source alone: converting a file * needs neither its dependencies nor an address space. A source that already holds an image is * returned as it is, once read through to check it. */ export declare function nodesetToImage(source: NodesetSource, options?: NodesetToImageOptions): Promise;