import type { PipelineExecutor } from '../../../execution/PipelineExecutor';
import type { string_parameter_name, string_parameter_value } from '../../../types/string_name';
/**
 * Executes the pipeline, persists any requested report, and prints the final CLI output.
 *
 * @private internal utility of `$initializeRunCommand`
 */
export declare function runPipelineExecution(options: {
    readonly pipelineExecutor: PipelineExecutor;
    readonly inputParameters: Record<string_parameter_name, string_parameter_value>;
    readonly isVerbose: boolean;
    readonly json?: string;
    readonly saveReport?: string;
}): Promise<void>;
