import type { SerializedError } from '@vitest/utils';
import { Message, type Parameters } from './message';
export declare class RunErrorMessage extends Message {
    private readonly identity;
    constructor(flowId: string, name: string, identity: string);
    protected generate(type: string, parameters?: Parameters): string;
    started(): string;
    failed(error: SerializedError): string;
    finished(): string;
    buildProblem(error: SerializedError): string;
    private getErrorMessage;
}
