import type { Language, ALL_BLOCKS, Blocks, NotebookCell, JupyterNotebook, CellOutput } from '@curvenote/blocks'; import { CELL_TYPE } from '@curvenote/blocks'; export * from './notebook'; export declare const translators: Record NotebookCell; fromJupyter: (cell: any, language: Language | undefined) => (Blocks.Code | Blocks.Content | Blocks.Output)[]; }>; export declare function translateToJupyter(block: ALL_BLOCKS): JupyterNotebook | NotebookCell | CellOutput[] | null; export declare function translateFromJupyter(cell: NotebookCell, language: Language | undefined): (Blocks.Code | Blocks.Content | Blocks.Output)[];