/**
 * @author WMXPY
 * @namespace Operation
 * @description Break Point
 */
import * as EST from "estree";
import { Sandbox } from "../marked/sandbox";
import { Scope } from "../variable/scope";
import { Trace } from "../variable/trace/trace";
export declare const pauseForBreakPoint: (this: Sandbox, node: EST.Node, scope: Scope, trace: Trace) => Promise<void>;
