import { type TaskReporterTaskResult, type TaskReporter } from '@ms-cloudpack/task-reporter'; import type { BundleRequest } from '../types/BundleRequest.js'; /** * Format a bundle result into a TaskReporter task result. * * NOTE: The info as formatted here will only be shown when a task is completed, not in the summary. * Reporter configuration may change over time, but as of writing: * - Failed tasks (message and errors) will be shown unless `--quiet`. * - Successful tasks will only be shown with `--verbose` or `--debug`, or if the command sets * `showCompleted` (`cloudpack bundle` does as of writing). */ export declare function formatBundleTaskResult(bundleRequest: BundleRequest, reporter: TaskReporter): TaskReporterTaskResult; //# sourceMappingURL=formatBundleTaskResult.d.ts.map