import { CommandRunner } from 'nest-commander'; type ServeOptions = { host?: string; port?: number; }; export declare class ServeCommand extends CommandRunner { constructor(); run(_input: string[], options?: ServeOptions): Promise; parseHost(value: string): string; parsePort(value: string): number; } export {};