/** * Utilities for parsing scripts into steps */ import { ScriptStep } from '../types'; export declare class ScriptParserUtils { /** * Parse script into steps using fallback method (code-based parsing) * Used when LLM parsing fails */ static parseScriptIntoStepsFallback(script: string): (ScriptStep & { success?: boolean; error?: string; })[]; /** * Validate step code has executable content (preserves comments) * Uses AST parsing to determine if code contains executable statements */ static cleanStepCode(code: string): string; } //# sourceMappingURL=script-parser-utils.d.ts.map