export interface StartServerOptions { port?: number; json?: boolean; } export declare const startServer: (options?: StartServerOptions) => import("node:http").Server;