import { flags } from '@oclif/command'; import { CLICommand } from '../command'; export default class Bundle extends CLICommand { static description: string; static flags: { help: import("@oclif/parser/lib/flags").IBooleanFlag; folder: flags.IOptionFlag; }; run(): Promise; generateVersioningFile(folder?: string): Promise; generateSourceInfo(sourceId: string, directoryPath: string): Promise; bundleSources(folder?: string): Promise; bundle(file: string, sourceDir: string, destDir: string): Promise; bundlev06(file: string, sourceDir: string, destDir: string): Promise; generateHomepage(folder?: string): Promise; }