import { SwellCommand } from '../swell-command.js';
export default class Switch extends SwellCommand {
    static args: {
        'store-id': import("@oclif/core/lib/interfaces/parser.js").Arg<string | undefined, Record<string, unknown>>;
    };
    static description: string;
    static examples: import("@oclif/core").Command.Example[];
    static summary: string;
    run(): Promise<void>;
}
