import { ISessionContext } from '@jupyterlab/apputils'; import { Cell } from '@jupyterlab/cells'; import { IMarkdownCell } from './cell'; import { Notebook, INotebookTracker } from '@jupyterlab/notebook'; /** * Load user expressions for given XMarkdown cell from kernel. * Store results in cell attachments. */ export declare function executeUserExpressions(cell: IMarkdownCell, sessionContext: ISessionContext): Promise; export declare function notebookExecuted(notebook: Notebook, cell: Cell, tracker: INotebookTracker): void;