interface StartOptions { port?: string; host?: string; stamp?: false; shouldThrow?: true; } /** * Production start command for the arkos CLI */ export declare function startCommand(options?: StartOptions): Promise; /** * Help function to help other processes to terminate the production server child process */ export declare function killProductionServerChildProcess(): void; export {};