import { PushAppCommand } from '../../push-app-command.js'; export default class AppPull extends PushAppCommand { static args: { appId: import("@oclif/core/lib/interfaces/parser.js").Arg>; targetPath: import("@oclif/core/lib/interfaces/parser.js").Arg>; }; static description: string; static examples: string[]; static flags: { force: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; }; static orientation: { env: string; }; static summary: string; logPulledChanges(pulled: string[], removed: string[]): void; run(): Promise; }