interface StartOptions { port?: number; host?: string; } /** * Start the EZ PM2 GUI server * @param options Configuration options * @returns The HTTP server instance */ export declare function start(options?: StartOptions): import("http").Server; declare const _default: { start: typeof start; }; export default _default;