import Plugin from "@saltcorn/data/models/plugin"; /** * * @param buildDir directory where the app will be build * @param plugins saltcorn plugins to install */ export declare function bundlePackagesAndPlugins(buildDir: string, plugins: Plugin[]): Promise; export declare function bundleMobileAppCode(buildDir: string): number | null; /** * Copy files from the plugin 'public' directories that are needed as headers into the app. * For themes, everything from 'public' will be copied. * @param buildDir directory where the app will be build */ export declare function copyPublicDirs(buildDir: string): Promise; /** * Copy 'mobile-app' directories from plugins to buildDir * so that they can be included in the build * @param buildDir directory where the app will be build */ export declare function copyPluginMobileAppDirs(buildDir: string): void; export declare function copyOptionalSource(buildDir: string, fileToCopy: string): void; //# sourceMappingURL=package-bundle-utils.d.ts.map