import { CommandLineInputs, CommandLineOptions } from '@ionic/cli-framework'; import { CommandMetadata } from '../../definitions'; import { Command } from '../../lib/command'; interface PackageBuild { job_id: number; id: string; caller_id: number; platform: string; build_type: string; created: string; finished: string; state: string; commit: any; stack: any; profile_tag: string; automation_id: number; environment_id: number; native_config_id: number; automation_name: string; environment_name: string; native_config_name: string; job: any; } interface DownloadUrl { url: string | null; } export declare class BuildCommand extends Command { getMetadata(): Promise; preRun(inputs: CommandLineInputs, options: CommandLineOptions): Promise; run(inputs: CommandLineInputs, options: CommandLineOptions): Promise; createPackageBuild(appflowId: string, token: string, platform: string, buildType: string, options: CommandLineOptions): Promise; getPackageBuild(appflowId: string, buildId: number, token: string): Promise; getDownloadUrl(appflowId: string, buildId: number, token: string): Promise; tailBuildLog(appflowId: string, buildId: number, token: string): Promise; downloadBuild(url: string, filename: string): Promise; } export {};