import type { PhpRuntimeArgs, PhpRuntimeValue } from './public'; import { PhpBase } from './PhpBase.mjs'; export class PhpWebview extends PhpBase { constructor(args?: PhpRuntimeArgs); startTransaction(): Promise; commitTransaction(readOnly?: boolean): Promise; refresh(): Promise; _enqueue(callback: (...params: Array) => Promise, params?: Array, readOnly?: boolean): Promise; }