import { ViteDevServer } from 'vite'; /** * Processes HTML to find remote assets and replace with Vite-managed URLs */ export declare function processRemoteAssets(html: string, viteServer: ViteDevServer): Promise; /** * Vite plugin to handle remote assets */ export declare function remoteAssetsPlugin(): { name: string; apply: "serve"; configResolved(config: any): void; resolveId(id: string): string; load(id: string): Promise; };