/** * Exposes Vite development server's transformIndexHtml method. * During development, it applies Vite built-in HTML transforms and any plugin HTML transforms. * In production, it returns the HTML unchanged. */ declare function transformIndexHtml(url: string, html: string, originalUrl?: string): Promise; /** * Exposes Vite development server's ssrFixStacktrace method. * During development, it fixes the error stacktrace. * In production, it's a no-op. */ declare function fixStacktrace(error: Error): void; export { fixStacktrace, transformIndexHtml };