import { IPCEventType } from "../../../../../shared/types/ipcEvents"; import { IPCMessageType } from "../../../../../shared/types/ipc"; import { AppWindow } from "../appWindow"; import { IPCHandler } from "./IPCHandler"; export declare class AppInfoHandler extends IPCHandler { readonly name = IPCEventType.getPlatform; readonly type = IPCMessageType.request; handle(window: AppWindow): import("../../../../../shared/types/ipcEvents").RequestStatus<{ platform: import("../../../../../shared/utils/os").PlatformInfo; isPackaged: boolean; crashReport: import("../../crashManager").CrashReport | null; config: import("../../../../../shared/types/global").ClientAppConfiguration; }>; }