import { PushAppCommand } from '../../push-app-command.js';
export default class AppWatch extends PushAppCommand {
    static description: string;
    static examples: string[];
    static flags: {
        'sync-all': import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
    };
    static orientation: {
        env: string;
    };
    static summary: string;
    run(): Promise<void>;
}
