import { CommandInstanceInfo, CommandLineInputs, CommandLineOptions, CommandMetadata, CommandPreRun } from '../../definitions'; import { JigraCommand } from './base'; export declare class BuildCommand extends JigraCommand implements CommandPreRun { getMetadata(): Promise; preRun(inputs: CommandLineInputs, options: CommandLineOptions, runinfo: CommandInstanceInfo): Promise; run(inputs: CommandLineInputs, options: CommandLineOptions): Promise; protected getContinueMessage(platform: string): string; private runJigraBuildHook; }