/** Post-process bundled output files to rewrite bare React specifiers * (e.g. `from "react"`) to stable vendor paths (e.g. `from "/vendor/react.js"`). * * Uses native Zig scanner when available (15x faster on large files), * falls back to JS regex on Windows or when native addon is missing. */ export declare const patchRefreshGlobals: (outputPaths: string[]) => Promise; export declare const rewriteReactImports: (outputPaths: string[], vendorPaths: Record) => Promise;