import { Plugin } from 'vite'; import { CompilerContext } from '../context/index.ts'; /** * This is similar to Stencil's assets hosting, but to improve DX, the assets * belonging to each component are moved into a folder named after the component * to prevent collisions (or to remove need for manually creating redundant * sub-directories to avoid collisions). */ export declare function handleStaticAssets(context: CompilerContext): Plugin;