import type { Options as SwcHtmlOptions } from '@swc/html'; import type { HtmlTagDescriptor } from 'vite'; type Options = { inject?: { data?: Record; tags?: HtmlTagDescriptor[]; }; minify?: boolean | SwcHtmlOptions; }; export declare const defaultMinifyOptions: SwcHtmlOptions; export default function simpleHtmlPlugin({ minify: minifyOptions }?: Options): { name: string; transformIndexHtml: { order: 'post'; handler: (html: string) => Promise; }; }; export {};