import { Theme } from '@principal-ade/industry-theme'; import React from 'react'; interface IndustryLazyMermaidDiagramProps { code: string; id: string; onCopyError?: (mermaidCode: string, errorMessage: string) => void; rootMargin?: string; onShowInPanel?: (code: string, title?: string) => void; theme?: Theme; onExpandClick?: () => void; /** * Forwarded to `IndustryMermaidDiagram` to render an "open in tab" arrow * button next to the fullscreen/expand button. */ onOpenInTab?: () => void; } export declare function IndustryLazyMermaidDiagram({ code, id, onCopyError, rootMargin, onShowInPanel, theme: themeOverride, onExpandClick, onOpenInTab, }: IndustryLazyMermaidDiagramProps): React.JSX.Element; export {}; //# sourceMappingURL=IndustryLazyMermaidDiagram.d.ts.map