interface DevOptions { port?: string; host?: string; } /** * Dev server command for the arkos CLI */ export declare function devCommand(options?: DevOptions): Promise; /** * Help function to help other processes to terminate the development server child process */ export declare function killDevelopmentServerChildProcess(): void; export {};