import { UI } from '@kui-shell/core'; import Response from './response'; import ActivationLike from './activation'; import * as AST from './ast'; import { NodeOptions } from './graph'; export default function fsm2graph(tab: UI.Tab, ir: AST.ASTNode, containerElement?: HTMLElement, acts?: ActivationLike[], options?: NodeOptions, rule?: { trigger: { name: string; }; }): Promise;