/** * Diagram builder — network. */ import type { App } from '../../App'; import type { Group } from '../../shapes/Group'; import type { NodeOptions } from '../../types'; import type { DiagramData } from '../types'; /** Create network topology diagram */ export declare function createNetworkDiagram(app: App, data: DiagramData, options?: NodeOptions): Group; /** * Grid catalog of standard network icons (one tile per canonical kind). * Pass `category` to filter (e.g. 'security', 'iot'). */ export declare function createNetworkIconCatalog(app: App, options?: NodeOptions & { category?: string; columns?: number; }): Group;