import type { VersionId } from '@curvenote/blocks'; import type { ISession } from '../../session/types.js'; export type NotebookExportOptions = { path?: string; filename: string; createNotebookFrontmatter?: boolean; ignoreProjectFrontmatter?: boolean; }; export declare function notebookToIpynb(session: ISession, versionId: VersionId, opts: NotebookExportOptions): Promise; export declare const oxaLinkToNotebook: (session: ISession, path: string, filename: string, opts?: Record) => Promise; //# sourceMappingURL=notebook.d.ts.map