/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import { BaseCommand } from "../../library/index.js"; export declare class UnreleasedReportCommand extends BaseCommand { static readonly summary = "Creates a release report for an unreleased build (one that is not published to npm), using an existing report in the \"full\" format as input."; static readonly description = "This command is primarily used to upload reports for non-PR main branch builds so that downstream pipelines can easily consume them."; static readonly flags: { version: import("@oclif/core/interfaces").OptionFlag; outDir: import("@oclif/core/interfaces").OptionFlag; fullReportFilePath: import("@oclif/core/interfaces").OptionFlag; branchName: import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; } //# sourceMappingURL=report-unreleased.d.ts.map