import type { Plugin as RollupPlugin } from 'rollup'; /** * A Rollup plugin that ignores imports of HTML and CSS files by replacing them * with empty modules. This is useful when bundling code that imports these * files for the browser build (where Vite handles them), but you want Rollup to * ignore them during the build process. * * @param options Configuration options * @returns Rollup plugin * * @example * ```js * import { ignoreHtmlAndCssImportsPlugin } from './rollup-plugin-ignore-html-and-css-imports' * * export default { * plugins: [ * ignoreHtmlAndCssImportsPlugin({ * removeExtensions: ['.html', '.css', '.scss', '.sass'] * }) * ] * } * ``` */ export declare const ignoreHtmlAndCssImportsPlugin: () => RollupPlugin; //# sourceMappingURL=rollup-plugin-cedarjs-ignore-html-and-css-imports.d.ts.map