import { Plugin } from "vite"; //#region plugin/stats-plugin.d.ts interface StatsPluginOptions { enabled?: boolean; reportDirectoryName?: string; reportCompressedSize?: boolean; emitHtml?: boolean; emitJson?: boolean; check?: boolean; failOnWarning?: boolean; } declare function statsPlugin(options?: StatsPluginOptions): Plugin; //#endregion export { statsPlugin };