import type { Blocks, CellOutput } from '@curvenote/blocks'; /** * Translate an output block to a jupyter CellOutput array * * @param block a version with the content field resolved to the output data */ export declare function toJupyter(block: Blocks.Output): CellOutput[]; export declare function fromJupyter(outputs: CellOutput[]): Partial;