import { IpcMainInvokeEvent } from 'electron'; import { IpcTransportHandler } from '../../common/index.js'; export declare class MainIpcTransportHandler implements IpcTransportHandler { on(event: string, callback: (event: IpcMainInvokeEvent, ...args: any[]) => unknown): this; once(event: string, callback: (event: IpcMainInvokeEvent, ...args: any[]) => unknown): this; off(event: string, callback: (event: IpcMainInvokeEvent, ...args: any[]) => unknown): this; }