import { QualifiedNameLike } from "node-opcua-data-model"; import { NodeId } from "node-opcua-nodeid"; import { BrowsePath } from "./imports"; export { stringToQualifiedName } from "node-opcua-data-model"; /** * construct a browse path from an array of QualifiedName and a starting Node */ export declare function constructBrowsePathFromQualifiedName(startingNode: { nodeId: NodeId; }, targetNames: QualifiedNameLike[] | null): BrowsePath;