/** * Notebook API Routes */ import { FastifyInstance } from 'fastify'; import { fsService } from '../fs/fs-service'; import { operationRouter } from '../notebook/operation-router'; import { HeadlessOperationHandler } from '../notebook/headless-handler'; declare const headlessHandler: HeadlessOperationHandler; export default function notebookRoutes(fastify: FastifyInstance): Promise; export { fsService, operationRouter, headlessHandler };