import { UserConfig } from "vite"; //#region presets/react-library.d.ts /** * Vite preset for publishable React component libraries. * Outputs ESM + CJS; externalises React and react-dom; wires up * @vitejs/plugin-react and optional Codecov bundle analysis. */ declare function reactLibrary({ entry, name, formats, external, overrides }?: { entry?: string; name?: string; formats?: ("es" | "cjs" | "umd" | "iife")[]; external?: string[]; overrides?: UserConfig; }): Promise; //#endregion export { reactLibrary };