import type { AppCommandOrientation } from '../../types/index.js';
import AppPush from '../app/push.js';
export default class AppThemePush extends AppPush {
    static args: {
        file: import("@oclif/core/lib/interfaces/parser.js").Arg<string | undefined, Record<string, unknown>>;
    };
    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>;
        env: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
        'sync-app': import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
        yes: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
    };
    static orientation: AppCommandOrientation;
    static summary: string;
    appType: string;
    run(): Promise<void>;
}
