import type { INotebookCellExecutor } from './tokens'; /** * Run a single notebook cell. * * @param options Cell execution options * @returns Execution status */ export declare function runCell({ cell, notebook, notebookConfig, onCellExecuted, onCellExecutionScheduled, sessionContext, sessionDialogs, translator }: INotebookCellExecutor.IRunCellOptions): Promise<boolean>;