import { flags } from '@oclif/command'; import { EnvCommand } from '../../base/env-command'; export declare class RuntimeBuildCommand extends EnvCommand { static description: string; static args: { name: string; description: string; }[]; static flags: { force: import("@oclif/parser/lib/flags").IBooleanFlag; env: flags.IOptionFlag; dir: flags.IOptionFlag; }; run(): Promise; }