import type { PhpRuntimeArgs, PhpRuntimeValue } from './public'; import { PhpBase } from './PhpBase.mjs'; export class PhpCliNode extends PhpBase { interactive: boolean; script?: string; code?: string; constructor(args?: PhpRuntimeArgs); provideInput(line: string): Promise; run(flags?: string[]): Promise; _run(flags?: string[]): Promise; }