import { GraphStateType } from "../../graph/graph";
export declare const generateReportNode: ({ testSteps, messages, lastError, sessionId, testStartTime, testEndTime, testDuration, reportFormat, }: GraphStateType) => Promise<{
    testSummary?: undefined;
    passRate?: undefined;
    recommendations?: undefined;
    criticalIssues?: undefined;
    errorAnalysis?: undefined;
    testEndTime?: undefined;
    testDuration?: undefined;
    lastError?: undefined;
} | {
    testSummary: string;
    passRate: number;
    recommendations: string[] | null;
    criticalIssues: string[] | null;
    errorAnalysis: string | null;
    testEndTime: number | null;
    testDuration: number | null;
    lastError?: undefined;
} | {
    testSummary: string;
    lastError: string | null;
    passRate?: undefined;
    recommendations?: undefined;
    criticalIssues?: undefined;
    errorAnalysis?: undefined;
    testEndTime?: undefined;
    testDuration?: undefined;
}>;
//# sourceMappingURL=report-generation-node.d.ts.map