import type { PipelineJson } from '../pipeline/PipelineJson/PipelineJson';
/**
 * Migrates the pipeline to the latest version
 *
 * Note: Migration does not do heavy lifting like calling the LLMs, just lightweight changes of the structure
 *
 * @public exported from `@promptbook/core`
 */
export declare function migratePipeline(deprecatedPipeline: PipelineJson): PipelineJson;
