export { CONFIG_KEYS, DEFAULT_LANGUAGE, DEFAULT_THEME_MODE, IPC_EVENTS, WINDOW_NAMES, } from './constants'; export { hostApiFetch, hostApiFetch as fetchFromHost, hasHostApiBridge, invokeIpc, onIpc, } from './host-api'; export { gatewayRpc, gatewayRpc as callGateway, onGatewayEvent, } from './gateway-client'; export { applyThemeModeToDocument, detectSystemTheme, resolveAppliedTheme, watchSystemTheme, } from './theme'; export { detectRuntimePlatform, detectWindowName, hasIpcBridge, resolveWindowIdentity, } from './runtime'; export type { ConfigKey, ConfigValueKey, ConfigValueMap, GatewayEvent, HostApiResult, IpcArgs, IpcListener, LanguageCode, ResolvedThemeMode, RuntimePlatform, ThemeMode, WindowApiBridge, WindowIdentity, WindowName, } from '../types/runtime';