import type { PhpRuntimeArgs } from 'php-wasm/PhpBase.mjs'; import { PhpBase } from 'php-wasm/PhpBase.mjs'; export class PhpDbgNode extends PhpBase { running: boolean; paused: boolean; currentFilePtr: number | null; currentLinePtr: number | null; bpCountPtr: number | null; constructor(args?: PhpRuntimeArgs); run(): Promise; provideInput(line: string): Promise; getPrompt(): Promise; isExecuting(): Promise; isRunning(): Promise; currentFile(): Promise; currentLine(): Promise; bpCount(): Promise; dumpVars(): Promise; dumpGlobals(): Promise; dumpConstants(): Promise; dumpFunctions(): Promise; dumpClasses(): Promise; dumpFiles(): Promise; dumpBacktrace(): Promise>; switchFrame(frame: number): Promise; }