import type { Context } from '@ms-cloudpack/api-server'; import type { BundleServer } from './types/BundleServer.js'; import type { BundleServerOptions } from './types/BundleServerOptions.js'; /** * The bundle server handles package requests and returns bundled resources. * Resources are bundled on demand and cached locally to avoid re-bundling on each request. */ export declare function startBundleServer(options: BundleServerOptions, context: Context): Promise; //# sourceMappingURL=startBundleServer.d.ts.map