import type { GenericParent } from 'myst-common'; import type { ISession } from '../session/types.js'; import type { PageFrontmatter } from 'myst-frontmatter'; export declare function processNotebook(session: ISession, file: string, content: string): Promise; export declare function processNotebookFull(session: ISession, file: string, content: string): Promise<{ mdast: GenericParent; frontmatter: PageFrontmatter; widgets: Record; }>; //# sourceMappingURL=notebook.d.ts.map