import { flags } from '@oclif/command'; import * as express from 'express'; import { BaseCommand } from '../../base/base-command'; export declare const ExpressImport: typeof express; export declare class RuntimeStartCommand extends BaseCommand { static description: string; static args: never[]; static flags: { port: import("@oclif/parser/lib/flags").IOptionFlag; secret: flags.IOptionFlag; watch: import("@oclif/parser/lib/flags").IBooleanFlag; dir: flags.IOptionFlag; }; run(): Promise; }