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