/*! PrivMX Web Endpoint. Copyright © 2024 Simplito sp. z o.o. This file is part of the PrivMX Platform (https://privmx.dev). This software is Licensed under the PrivMX Free License. See the License for the specific language governing permissions and limitations under the License. */ import { Event } from "../Types"; import { BaseNative } from "./BaseNative"; export declare class EventQueueNative extends BaseNative { protected newApi(_connectionPtr: number): Promise; deleteApi(ptr: number): Promise; newEventQueue(): Promise; deleteEventQueue(ptr: number): Promise; waitEvent(ptr: number, args: []): Promise; emitBreakEvent(ptr: number, args: []): Promise; }