import { ReactWidget } from '@jupyterlab/apputils'; import { DashboardView } from '../format'; /** * A ReactWidget to edit the dashboard notebook metadata. */ export declare class DashboardMetadataEditor extends ReactWidget { /** * Construct a `DashboardMetadataEditor`. * * @param info - The `DashboardView` info. */ constructor(info: DashboardView); /** * Getter to obtain the new dashboard metadata info. */ get info(): DashboardView; render(): JSX.Element; private _info; }