import { IControl } from '../controls/interfaces/IControl'; /** * Creates a text diagram of the Control tree * * Notes: * 1. The controls in the handling chain are highlighted with `= H =` * 2. The controls in the initiative chain are highlighted with `= I =` * 3. Controls that are in both chains are highlighted with `= B =` * @param control - Control * @param turnNumber - Turn number * @param indent - Indent */ export declare function generateControlTreeTextDiagram(control: IControl, turnNumber: number, indent?: number): string; //# sourceMappingURL=ControlTreeVisualization.d.ts.map