import { GraphStateType } from '../../graph/graph';
/**
 * Node that generates a Playwright script from successful test execution data
 */
export declare const generatePlaywrightScriptNode: ({ sessionId, isComplete, testEndTime, testDuration, testSteps, scriptFormat, }: GraphStateType) => Promise<{
    playwrightCoordinateScriptPath?: undefined;
    playwrightSelectorScriptPath?: undefined;
    playwrightActionsPath?: undefined;
    lastError?: undefined;
} | {
    playwrightCoordinateScriptPath: string;
    playwrightSelectorScriptPath: string;
    playwrightActionsPath: string;
    lastError?: undefined;
} | {
    lastError: string;
    playwrightCoordinateScriptPath?: undefined;
    playwrightSelectorScriptPath?: undefined;
    playwrightActionsPath?: undefined;
}>;
//# sourceMappingURL=generate-playwright-script-node.d.ts.map