import * as diagram from "../diagram/index"; export interface DiagramRenderer { render(props: RenderingProps): Promise; } export declare abstract class RenderingProps { diagram: diagram.Diagram; } export interface RenderingOutput { userOutput(): any; } export declare class RenderingError extends Error { readonly debugInfo: string[]; readonly fixTips: string[]; constructor(message: string, debugInfo?: string[], fixTips?: string[]); }