import { BaseCommand } from '../../modules/shared/base-commands/base-command'; import { flags } from '@oclif/command'; export default class TriggerPostBuild extends BaseCommand { static description: string; static examples: string[]; static flags: { 'image-name': flags.IOptionFlag; 'all-true': import("@oclif/parser/lib/flags").IBooleanFlag; shell: flags.IOptionFlag; script: flags.IOptionFlag; }; static args: never[]; run(): Promise; }