import { PushAppCommand } from '../../push-app-command.js';
export default class AppDev extends PushAppCommand {
    static examples: string[];
    static flags: {
        'storefront-id': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
        'storefront-select': import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
        'no-push': import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
        port: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<number | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
    };
    static summary: string;
    static delayOrientation: boolean;
    static orientation: {
        env: string;
    };
    run(): Promise<void>;
}
