import { Plugin } from "vite";

//#region src/render/plugins/rawExtract.d.ts
/**
 * Vite plugin that extracts raw slot content from <Raw> tags
 * and passes it as a :content prop before Vue compiles the template.
 *
 * Lets users write content (including `{{ }}` interpolation syntax used
 * by ESPs / Handlebars / Liquid) inside <Raw> without Vue parsing it.
 */
declare function rawExtract(): Plugin;
//#endregion
export { rawExtract };
//# sourceMappingURL=rawExtract.d.ts.map