import { JupyterFrontEndPlugin } from '@jupyterlab/application'; import { VoilaPreview, IVoilaPreviewTracker, VoilaPreviewFactory } from './preview'; export { VoilaPreview, IVoilaPreviewTracker, VoilaPreviewFactory }; /** * The command IDs used by the plugin. */ export declare namespace CommandIDs { const voilaRender = "notebook:render-with-voila"; const voilaOpen = "notebook:open-with-voila"; } /** * Initialization data for the jupyterlab-preview extension. */ declare const extension: JupyterFrontEndPlugin; export default extension;