import type { Metafile } from "esbuild"; import type { BundlerAssetManifest, BundlerOutputLayoutStats, BundlerPrecompressStats, BundlerResolvedDiscovery } from "../types.d.ts"; import type { NormalizedManifestOptions } from "./discovery.js"; type ManifestWriteResult = { manifestPath?: string; }; declare function writeBundlerManifest(args: { assetManifest?: BundlerAssetManifest; metafile?: Metafile; manifest: NormalizedManifestOptions; outDir: string; outputLayout?: BundlerOutputLayoutStats; precompressed?: BundlerPrecompressStats; resolvedDiscovery: BundlerResolvedDiscovery; rootDir: string; }): Promise; export { writeBundlerManifest }; //# sourceMappingURL=manifest.d.ts.map