import type { RecursiveCodeCell, RecursiveCodeCellResult } from "../../domain/recursive/code-cell.js"; import { listRecursiveCodeCells, loadRecursiveCodeCell, loadRecursiveCodeCellResult, readRecursiveCodeCellSource, writeRecursiveCodeCell } from "./session-store.js"; export { listRecursiveCodeCells, loadRecursiveCodeCell, loadRecursiveCodeCellResult, readRecursiveCodeCellSource, writeRecursiveCodeCell }; export declare function persistRecursiveCodeCell(workspaceRoot: string, cell: RecursiveCodeCell, result?: RecursiveCodeCellResult, sourceText?: string, stdout?: string, stderr?: string): Promise<{ cellDir: string; cellPath: string; resultPath: string; sourcePath: string; stdoutPath: string; stderrPath: string; }>; //# sourceMappingURL=cell-store.d.ts.map