import { n as GetAppInfoResponse, r as GetLicenseKeyResponse } from "../common-DBIk1R5l.js"; //#region src/main/private/hybridDesktopPlatformHelpers.d.ts /** * Check if is an electron app. * @returns Whether or not the platform is Electron. * @hidden */ declare function isElectron(): boolean; /** * Get the appId and if app is packaged from the hybrid desktop platform layer * @hidden */ declare function getAppInfo(): Promise; /** * Get the key from the hybrid desktop platform layer * @hidden */ declare function getKey(config: { licenseDataPath: string; }): Promise; //#endregion export { getAppInfo, getKey, isElectron };