import type { ComboCombinedLayoutOptions, Graph, Layout, LayoutMapping } from './types'; /** * 组合布局 * * Combo-Combined layout */ export declare class ComboCombinedLayout implements Layout { options: ComboCombinedLayoutOptions; id: string; constructor(options?: ComboCombinedLayoutOptions); /** * Return the positions of nodes and edges(if needed). */ execute(graph: Graph, options?: ComboCombinedLayoutOptions): Promise; /** * To directly assign the positions to the nodes. */ assign(graph: Graph, options?: ComboCombinedLayoutOptions): Promise; private genericComboCombinedLayout; private initVals; private getInnerGraphs; }