import { CommandLineOptions } from '@ionic/cli-framework'; import { Command } from '../../lib/command'; export declare abstract class DeployCoreCommand extends Command { protected getAppIntegration(): Promise; protected requireNativeIntegration(): Promise; } export declare abstract class DeployConfCommand extends DeployCoreCommand { protected readonly optionsToPlistKeys: { 'app-id': string; 'channel-name': string; 'update-method': string; 'max-store': string; 'min-background-duration': string; 'update-api': string; }; protected readonly optionsToStringXmlKeys: { 'app-id': string; 'channel-name': string; 'update-method': string; 'max-store': string; 'min-background-duration': string; 'update-api': string; }; protected getAppId(): Promise; protected checkDeployInstalled(): Promise; protected printPlistInstructions(options: CommandLineOptions): void; protected printStringXmlInstructions(options: CommandLineOptions): void; protected getIosCapPlist(): Promise; protected getAndroidCapString(): Promise; protected addConfToIosPlist(options: CommandLineOptions): Promise; protected addConfToAndroidString(options: CommandLineOptions): Promise; protected preRunCheckInputs(options: CommandLineOptions): Promise; }