import { ReactWidget } from '@jupyterlab/apputils'; import { VoilaGridStackPanel } from '../panel'; /** * A toolbar widget to compact the dashboard on the top left corner. */ export default class Compact extends ReactWidget { constructor(panel: VoilaGridStackPanel); render(): JSX.Element; private _panel; }