import { PushAppCommand } from '../../push-app-command.js'; export default class AppPush extends PushAppCommand { static args: { file: import("@oclif/core/lib/interfaces/parser.js").Arg>; }; static delayOrientation: boolean; static description: string; static examples: string[]; static flags: any; static orientation: AppCommandOrientation; static summary: string; resolvePushPaths(file: string, appPathFlag?: string): { filePath: string; relativePath: string; }; run(): Promise; }