import { InstalledAppId } from "../types.js"; export declare const LAUNCHER_ENV_URL = "/.launcher-env.json"; export interface LauncherEnvironment { APP_INTERFACE_PORT: number; ADMIN_INTERFACE_PORT: number; INSTALLED_APP_ID: InstalledAppId; } export declare function getLauncherEnvironment(): Promise;