/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { BaseCommand } from "../../library/index.js"; /** * Runs checks on a local branch to verify it is ready to serve as the base for a release branch. */ export declare class ReleasePrepareCommand extends BaseCommand { static readonly summary = "Runs checks on a local branch to verify it is ready to serve as the base for a release branch."; static readonly aliases: string[]; static readonly description: string; static readonly args: { readonly package_or_release_group: import("@oclif/core/interfaces").Arg>; }; run(): Promise; } //# sourceMappingURL=prepare.d.ts.map