import { UI } from '@kui-shell/core'; import ActivationLike from './activation'; import { FlowNode } from './graph'; import Response from './response'; export default function graph2doms(tab: UI.Tab, JSONgraph: FlowNode, ifReuseContainer?: Element, activations?: ActivationLike[], { layoutOptions, composites }?: { layoutOptions?: Record; composites?: { label: { fontSize: string; offset: { x: number; y: number; }; }; }; }): Promise;