import { JupyterFrontEndPlugin } from '@jupyterlab/application'; /** * Adds a VS Code-style path breadcrumb to text editor toolbars. Each * segment is clickable: clicking dispatches `xtralab:reveal-path` so * any plugin that listens (today, the file browser) can surface the * underlying folder or file. The breadcrumbs plugin therefore does not * import the file browser at all — the JupyterLab command registry is * the only seam between them. */ declare const plugin: JupyterFrontEndPlugin; export default plugin;