/** Compatibility shim — the rewrite logic moved to * `rewriteImportsPlugin.ts` where it runs in-pipeline against * `BuildArtifact[]` straight off `Bun.build()`'s result. Existing callers * that still pass a list of file paths route through this thin wrapper. * The new in-pipeline call site is `rewriteBuildOutputs`/`buildWithImportRewrite` * in `rewriteImportsPlugin.ts`. */ export declare const rewriteImports: (outputPaths: string[], vendorPaths: Record) => Promise; export declare const rewriteVendorDirectories: (vendorDirs: string[], vendorPaths: Record) => Promise;