import type { HtmlTagDescriptor } from 'vite'; type Options = { inject?: { data?: Record; tags?: HtmlTagDescriptor[]; }; }; export default function htmlPlugin({ inject }?: Options): { name: string; transformIndexHtml: { order: 'pre'; handler: (html: string) => Promise; }; }; export {};