import { Command } from 'clipanion'; import { Manifest } from '../utils/manifest'; import { IBuildCommand } from '../utils/plugin-manager'; export declare class BuildCommand extends Command { static paths: string[][]; outFolder: string; static usage: import("clipanion").Usage; execute(): Promise; execBuild(command: IBuildCommand, outputFolder: string): Promise; retry(command: Promise): Promise; generateBicep(manifestContent: Manifest, outFolder: string): string; }