import { JupyterFrontEndPlugin } from '@jupyterlab/application'; /** * Contribute a search-bar-styled command bar to JupyterLab's top bar toolbar. * Clicking it opens the omnibox — a launcher overlay that fuzzy-searches files * and commands and routes a typed prompt to an agent. * * The pill is a regular settings-driven toolbar item: this plugin registers a * widget factory for it on the `IToolbarWidgetRegistry` and declares its rank * in schema/command-bar.json, so users can move or disable it from the Top * Bar settings like any other toolbar item. * * The factory is only registered when the omnibox is available — the * `IOmnibox` token is provided by `xtralab:omnibox` — so the pill never * appears with nothing to open (without a factory, the toolbar item resolves * to an empty command button that renders nothing). */ declare const plugin: JupyterFrontEndPlugin; export default plugin;