export declare const SERVER_STATE_DIR: string; export declare const SERVER_STATE_FILE: string; export interface ServerState { pid: number; port: number; host: string; version: string; startedAt: string; } export declare function writeServerState(port: number, host: string): void; export declare function removeServerState(): void; export declare function readServerState(): ServerState | null; //# sourceMappingURL=server-state.d.ts.map