/** * Desktop Module Exports * Provides all desktop-related utilities for Electron integration */ export * from "./bundler.js"; export * from "./native-modules.js"; import * as bundler from "./bundler.js"; import * as nativeModules from "./native-modules.js"; export declare const Desktop: { copyNativeModules(config: nativeModules.NativeModuleConfig): Promise; rebuildNativeModules(targetDir: string, electronVersion?: string): Promise; createNativeModuleLoader(outputPath: string, nativeModules: string[]): Promise; isNativeModule(moduleName: string): Promise; detectNativeModules(projectDir: string): Promise; bundleWithNativeModules(options: nativeModules.BundleWithNativeModulesOptions): Promise; COMMON_NATIVE_MODULES: string[]; bundleBackend(options: bundler.BundleOptions): Promise; bundleDependencies(packageJsonPath: string, outDir: string): Promise; default: { bundleBackend: typeof bundler.bundleBackend; bundleDependencies: typeof bundler.bundleDependencies; }; }; export default Desktop; //# sourceMappingURL=index.d.ts.map