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