import type { Blocks, JupyterNotebook } from '@curvenote/blocks'; import type { TranslatedBlockPair } from './types'; /** * Parses the notebook Json creating a draft/empty notebook block and an array of * translated block versions ready for ready for.... */ export declare const parseNotebook: (notebookAsJson: JupyterNotebook) => { notebook: Partial; children: TranslatedBlockPair[]; };