declare module "@fusion/core" { export class TaskStore { constructor(rootDir: string); init(): Promise; watch(): Promise; close(): void; } } declare module "@fusion/dashboard" { import type { Server } from "node:http"; export function createServer(store: { init(): Promise; watch(): Promise; close(): void; }): { listen(port?: number): Server; }; }