export { ISettingsClient, IpcClient, ILog } from '@platform/electron/lib/types'; export * from '@uiharness/types'; import { IpcMessage, IContext as ICoreContext, SettingsJson } from '@platform/electron/lib/types'; import { IRuntimeConfig } from '@uiharness/types'; export declare type IContext = ICoreContext & { config: IRuntimeConfig; }; export declare type IEvents = IFooEvent; declare type IFooEvent = { type: 'UIHARNESS/foo'; payload: {}; };