/** * Context menu module. * * Builds the right-click context menu for the pet. Electron Menu is * available via the preload bridge in the renderer process. */ import { BrowserWindow } from "electron"; /** * Creates the pet context menu. * * Menu items: * - "Show Pet" / "Hide Pet" toggle * - Separator * - "Switch Pet..." * - "Settings..." * - "About" * - Separator * - "Quit" * * @param win The BrowserWindow this menu controls. * @returns An Electron Menu instance. */ export declare function createContextMenu(win: BrowserWindow): Electron.Menu; //# sourceMappingURL=context-menu.d.ts.map