import { NotebookPanel } from '@jupyterlab/notebook'; import { CodeCell } from '@jupyterlab/cells'; export interface IInitCellsOptions { run_on_kernel_ready: boolean; run_untrusted?: boolean; } export declare function enableInitializationCellsFeature(panel: NotebookPanel): void; export declare function runInitCells(panel: NotebookPanel, options: IInitCellsOptions): void; export declare function getInitCells(panel: NotebookPanel): CodeCell[]; export declare function registerNotebookInitCellsAction(panel: NotebookPanel, options: IInitCellsOptions): void;