/** * Hack plugin to transform css for Vite compatibility: * 1. wrap the css code with `` before post plugins execute(priority 98) * 2. unwrap the css code from `` after post plugins execute */ import { JsPlugin } from '../../type.js'; export declare function cssPluginWrap(options: { filtersUnion: Set; }): JsPlugin; export declare function cssPluginUnwrap(options: { filtersUnion: Set; }): JsPlugin;