import { GraphStateType } from "../../graph/graph";
export declare const parseTestStepsNode: ({ processedInstruction, skipAnalysis, }: GraphStateType) => Promise<{
    testSteps: never[];
    currentStepIndex: number;
    processedInstruction?: undefined;
    testCaseQuality?: undefined;
    lastError?: undefined;
} | {
    processedInstruction: string;
    testSteps: any[];
    currentStepIndex: number;
    testCaseQuality: {
        rating: number;
        strengths: string[];
        weaknesses: string[];
        improvementSuggestions: string;
        criteriaRatings: {
            clarity: number;
            atomicity: number;
            verifiability: number;
            completeness: number;
            errorHandling: number;
            testData: number;
            independence: number;
        };
    };
    lastError?: undefined;
} | {
    processedInstruction: string;
    testSteps: never[];
    currentStepIndex: number;
    lastError: string;
    testCaseQuality?: undefined;
}>;
//# sourceMappingURL=parsing-node.d.ts.map