import { BlockDefinition, TreeType } from '@forten/tree-type'; import { UILayoutType, UITreeType } from '../types/index.js'; declare type StringMap = { [k: string]: T; }; export declare function colorName(objName: string): string; /** Compute the layout of a graph. */ export declare const uimap: (tree: TreeType, flags?: StringMap> | undefined, alayout?: UILayoutType | undefined) => UITreeType; export {};