export declare const deserializeErr: (serializedErr: any) => any;
export declare function invokeIpcMethod({ hostname, method, args, ipcPort, ipcKey, }: {
hostname?: string;
method: string;
args: any[];
ipcPort?: string;
ipcKey?: string;
}): Promise<any>;