import { StateMachineInfo } from '../reflection/state-machine-info'; /** * Class to generate a DOT grah in UML format * * @export * @class UmlDotGraph */ export declare class UmlDotGraph { /** * Generate a UML DOT graph from the state machine info * * @static * @template TState * @param {StateMachineInfo} machineInfo State machine information. * @param {boolean} [isVisibleCurrentState=false] Visible current state or not. * @returns {string} * @memberof UmlDotGraph */ static format(machineInfo: StateMachineInfo, isVisibleCurrentState?: boolean): string; } //# sourceMappingURL=uml-dot-graph.d.ts.map