/** * @license * Copyright 2023 Google Inc. * SPDX-License-Identifier: Apache-2.0 */ import type * as Bidi from 'webdriver-bidi-protocol'; import type { ElementHandle } from '../api/ElementHandle.js'; import { JSHandle } from '../api/JSHandle.js'; import type { BidiRealm } from './Realm.js'; /** * @internal */ export declare class BidiJSHandle extends JSHandle { #private; static from(value: Bidi.Script.RemoteValue, realm: BidiRealm): BidiJSHandle; readonly realm: BidiRealm; constructor(value: Bidi.Script.RemoteValue, realm: BidiRealm); get disposed(): boolean; jsonValue(): Promise; asElement(): ElementHandle | null; dispose(): Promise; get isPrimitiveValue(): boolean; toString(): string; get id(): string | undefined; remoteValue(): Bidi.Script.RemoteValue; remoteObject(): never; } //# sourceMappingURL=JSHandle.d.ts.map