import Fastify from 'fastify'; import type { GraphStore } from '@sniffo/storage'; export interface ServerOptions { store: GraphStore; projectDir: string; host?: string; port?: number; staticDir?: string; } export declare function createServer(options: ServerOptions): Promise, import("node:http").IncomingMessage, import("node:http").ServerResponse, Fastify.FastifyBaseLogger, Fastify.FastifyTypeProviderDefault>>; export declare function startServer(options: ServerOptions): Promise, import("node:http").IncomingMessage, import("node:http").ServerResponse, Fastify.FastifyBaseLogger, Fastify.FastifyTypeProviderDefault>>; //# sourceMappingURL=server.d.ts.map