/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { BaseCommand } from "../../library/commands/base.js"; export default class GenerateChangesetCommand extends BaseCommand { static readonly summary = "Generates a new changeset file. You will be prompted to select the packages affected by this change. You can also create an empty changeset to include with this change that can be updated later."; static readonly aliases: string[]; static readonly enableJsonFlag = true; static readonly flags: { readonly releaseGroup: import("@oclif/core/interfaces").OptionFlag<"client" | "server" | "build-tools" | "gitrest" | "historian", import("@oclif/core/interfaces").CustomOptions>; readonly branch: import("@oclif/core/interfaces").OptionFlag; readonly empty: import("@oclif/core/interfaces").BooleanFlag; readonly all: import("@oclif/core/interfaces").BooleanFlag; readonly uiMode: import("@oclif/core/interfaces").OptionFlag; }; static readonly examples: { description: string; command: string; }[]; run(): Promise<{ branch: string; selectedPackages: string[]; changesetPath?: string; }>; } //# sourceMappingURL=changeset.d.ts.map