import type { task_id } from '../types/string_token';
/**
 * This error indicates errors during the execution of the pipeline
 *
 * @public exported from `@promptbook/core`
 */
export declare class PipelineExecutionError extends Error {
    readonly name = "PipelineExecutionError";
    readonly id?: task_id;
    constructor(message: string);
}
