/** * Kernel API Routes */ import { FastifyInstance } from 'fastify'; import { WebSocketServer } from 'ws'; import { KernelService } from '../kernel/kernel-service'; declare const kernelService: KernelService; /** * Setup WebSocket handler for kernel execution */ export declare function setupKernelWebSocket(wss: WebSocketServer): void; export default function kernelRoutes(fastify: FastifyInstance): Promise; export { kernelService };