import type { LwrGlobalConfig } from '@lwrjs/types'; export interface BuildOptions { outputDir?: string; normalizedOutputDir?: string; minify?: boolean; } export declare const REQUEST_SCRIPT_NAME = "index.js"; /** * Resolve configurations, generate a server build module, and bundle * the LWR server. The bundled server will be written to the file system. * * @param {LwrGlobalConfig} configArg - programmatic LWR global config * @param {BuildOptions} options - server build options */ export declare function buildServer(configArg?: LwrGlobalConfig, options?: BuildOptions): Promise; //# sourceMappingURL=server-build.d.ts.map