export declare const DEFAULT_SERVER_PORT = 13337; declare function readPort(pidFile: string): number | null; declare function readPid(pidFile: string): number | null; export { readPort as readPortFromFile, readPid as readPidFromFile }; export declare function startServer(opts: { port: number; }): Promise<{ pid: number; }>; export declare function stopServer(): Promise; export declare function serverStatus(): Promise<{ running: boolean; pid?: number; port?: number; }>; //# sourceMappingURL=server.d.ts.map