import type { Plugin } from 'vite';
/**
 * Vite plugin that excludes node_module files from sourceMaps.
 * Uses Rolldown's transform hook to return an empty source map for vendor files,
 * which prevents their source content from being included in the final bundle's source map.
 *
 * This is the Vite-compatible counterpart of the esbuild-only `excludeVendorFromSourceMapPlugin`.
 */
export declare const excludeVendorFromSourceMapVitePlugin: () => Plugin;
