export declare const SERVER_MAP: Record; interface ServeOptions { http?: boolean; host?: string; port?: string; path?: string; staging?: boolean; } export declare function resolveServerFileName(serverName: string): string | null; export declare function resolveServerBundlePath(serverName: string, baseDir?: string): string | null; export declare function serveCommand(serverName: string, options?: ServeOptions): void; export {};