import type { ContextMenuOpenArgs, ContextMenuResult } from "@edenapp/types"; import type { ContextMenuManager } from "./ContextMenuManager"; export declare class ContextMenuHandler { private manager; constructor(manager: ContextMenuManager); handleRegisterDisplay(args: { _callerAppId?: string; _callerWebContentsId?: number; }): Promise<{ success: boolean; }>; handleOpen(args: ContextMenuOpenArgs & { _callerAppId?: string; _callerWebContentsId?: number; }): Promise<{ requestId: string; }>; handleResolve(args: ContextMenuResult & { _callerAppId?: string; }): Promise<{ success: boolean; }>; handleClose(args: { requestId?: string; _callerAppId?: string; _callerWebContentsId?: number; }): Promise<{ success: boolean; }>; } //# sourceMappingURL=ContextMenuHandler.d.ts.map