import { JupyterFrontEndPlugin } from '@jupyterlab/application'; /** * Contribute `xtralab:show`: render a single MIME bundle into a main-area * panel using the application's render-mime registry. * * This is the kernel-free counterpart to running a notebook. A coding agent * generates the content itself (a Vega-Lite spec, a Markdown explainer, an * HTML fragment, an SVG, a base64 image) and hands it to this command, which * renders it with the same renderers JupyterLab uses for cell output and docks * the result beside the code. Nothing is written to disk and no kernel is * required, so it works even where the kernel has no plotting libraries. * * Repeated calls with the same `id` reuse one panel, so a walkthrough can * refresh the view in place instead of piling up tabs. */ declare const plugin: JupyterFrontEndPlugin; export default plugin;