/** * Network topology node primitive. */ import type { App } from '../../App'; import type { Group } from '../../shapes/Group'; export declare function createNetworkNode(app: App, label: string, type: string): Group;