import type { ViteDevServer, ModuleNode } from 'vite'; /** * Collect SSR CSS for Vite */ export declare const componentsModules: (components: string[], vite: ViteDevServer) => Set; export declare const collectCss: ({ mods, styles, checkedComponents }: { mods: Set; styles?: Map; checkedComponents?: Set; }) => string; /** * Client listener to detect updated modules through HMR, and remove the initial styled attached to the head */ export declare const removeCssHotReloaded: () => void;