import { CommandLineInputs, CommandLineOptions } from '@ionic/cli-framework'; import { CommandMetadata } from '../../definitions'; import { Command } from '../../lib/command'; interface DeployBuild { artifact_name: string; job_id: number; id: string; caller_id: number; created: string; finished: string; state: string; commit: any; automation_id: number; environment_id: number; native_config_id: number; automation_name: string; environment_name: string; job: any; pending_channels: string[]; } interface DownloadUrl { url: string | null; } export declare class BuildCommand extends Command { getMetadata(): Promise; preRun(inputs: CommandLineInputs, optinos: CommandLineOptions): Promise; run(inputs: CommandLineInputs, options: CommandLineOptions): Promise; createDeployBuild(appflowId: string, token: string, options: CommandLineOptions): Promise; tailBuildLog(appflowId: string, buildId: number, token: string): Promise; getDeployBuild(appflowId: string, buildId: number, token: string): Promise; getDownloadUrl(appflowId: string, buildId: number, token: string): Promise; downloadBuild(url: string, filename: string): Promise; } export {};