/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { BaseCommand } from "../../library/index.js"; export default class GenerateChangeLogCommand extends BaseCommand { static readonly description = "Generate a changelog for packages based on changesets."; static readonly flags: { readonly releaseGroup: import("@oclif/core/interfaces").OptionFlag<"client" | "server" | "build-tools" | "gitrest" | "historian", import("@oclif/core/interfaces").CustomOptions>; readonly version: import("@oclif/core/interfaces").OptionFlag; readonly install: import("@oclif/core/interfaces").BooleanFlag; }; static readonly examples: { description: string; command: string; }[]; private processPackage; run(): Promise; } //# sourceMappingURL=changelog.d.ts.map