import { CommandRunner } from "nest-commander";
interface WebCommandOptions {
    port?: number;
    dir?: string;
    host?: string;
    webUrl?: string;
}
export declare class WebCommand extends CommandRunner {
    run(_passedParams: string[], options?: WebCommandOptions): Promise<void>;
    parsePort(val: string): number;
    parseHost(val: string): string;
    parseDir(val: string): string;
    parseWebUrl(val: string): string;
}
export {};
//# sourceMappingURL=web.command.d.ts.map