export declare const command = "start [entry]";
export declare const description = "start an app in production mode";
export declare const builder: {
    config: {
        alias: string;
        type: string;
        hidden: boolean;
        describe: string;
    };
    https: {
        type: string;
        default: boolean;
        describe: string;
    };
    port: {
        alias: string;
        type: string;
        default: string;
        describe: string;
    };
    host: {
        alias: string;
        type: string;
        default: string;
        describe: string;
    };
};
export declare const handler: (args: any) => void;
