/** * This file was auto-generated by Fern from our API Definition. */ import * as serializers from "../index"; import * as Scrapybara from "../../api/index"; import * as core from "../../core"; import { CellType } from "./CellType"; export declare const NotebookCell: core.serialization.ObjectSchema; export declare namespace NotebookCell { interface Raw { id: string; type: CellType.Raw; content: string; metadata?: Record | null; outputs?: Record[] | null; execution_count?: number | null; } }