import { App } from "electron"; //#region src/electron/main.d.ts interface Deps { app: App; fs: typeof import("node:fs/promises"); crypto: typeof import("node:crypto"); path: typeof import("node:path"); ipcMain: Electron.IpcMain; } declare function register(deps: Deps, publicKey: string): void; declare function unregister(): void; //#endregion export { register, unregister };