import { type UnpluginInstance } from 'unplugin'; export interface Options { /** * RegExp matching imports which sourcemap should be read. * * @default /\.js$/ */ include: RegExp; /** * RegExp matching imports for which sourcemaps should be ignored. * * @default undefined */ exclude?: RegExp; } type Plugin = UnpluginInstance | undefined>; export declare const plugin: Plugin; export declare const ViteSourcemap: Plugin['vite']; export declare const RollupSourcemap: Plugin['rollup']; export declare const RolldownSourcemap: Plugin['rolldown']; export declare const WebpackSourcemap: Plugin['webpack']; export declare const RspackSourcemap: Plugin['rspack']; export declare const EsbuildSourcemap: Plugin['esbuild']; export declare const FarmSourcemap: Plugin['farm']; export {}; //# sourceMappingURL=index.d.ts.map