import type { StructuredError } from "../../errors/structured-errors.js"; export interface DebugHandlerResult { ok: boolean; output?: string; exitCode?: number; returnValue?: number; callStack?: string[]; crashLocation?: { fn: string; nodeId: string; }; stepsExecuted?: number; error?: string; errors?: StructuredError[]; } export declare function handleDebug(ast: unknown, options?: { maxSteps?: number; }): Promise; //# sourceMappingURL=debug.d.ts.map