import { Plugin } from "rolldown";
export * from "rolldown/experimental";
export * from "rolldown/plugins";
export * from "rolldown-plugin-dts";

//#region src/plugins/paths/index.d.ts
declare function outputPaths(entries: OutputPathsEntry[]): Plugin;
//#endregion
//#region src/plugins/paths/types.d.ts
interface OutputPathsEntry {
  find: string | RegExp;
  replacement: string | ((path: string, match: RegExpExecArray | null) => string);
}
//#endregion
export { OutputPathsEntry, outputPaths };