import type { IpcMain, IpcRenderer } from "electron"; import BusLink from "./core/BusLink"; import { RegisterBusFunction } from "./core/BusLinkBackend"; import { DefaultInitArgs } from "./types"; export declare const electronBus: (ipc: IpcMain, channel?: string) => RegisterBusFunction; export declare const createElectronBusLink: (ipc: IpcRenderer, channel?: string) => BusLink;