/** * Render a parsed Wardley map to a canvas context * @param {ParsedMap} map - Parsed map object from wmap-parser * @param {CanvasRenderingContext2D} ctx - Canvas context to render to * @param {StageType} stageType - The labels to use for each stage in the map. * @param {tConfiguration} configuration - Configuration object * @returns {Promise} */ export function render(map: ParsedMap, ctx: CanvasRenderingContext2D, stageType: StageType, configuration: tConfiguration): Promise; export type tConfiguration = import("./configuration.js").tConfiguration; export type StageType = import("./stage_type.js").StageType; export type ParsedMap = import("wmap-parser").Map;