import { Command, flags } from '@oclif/command'; declare class FabCompile extends Command { static description: string; static flags: { version: import("@oclif/parser/lib/flags").IBooleanFlag; help: import("@oclif/parser/lib/flags").IBooleanFlag; input: flags.IOptionFlag; 'build-dir': flags.IOptionFlag; output: flags.IOptionFlag; 'compile-only': import("@oclif/parser/lib/flags").IBooleanFlag; }; static args: never[]; run(): Promise; } export = FabCompile;