/** * Generate a short, stable hash for a component based on its file path. */ export declare function generateScopeId(filePath: string): string; /** * Scope all CSS selectors in `css` by adding `[data-v-XXXXX]` to each selector. * Handles simple selectors, comma-separated lists, pseudo-classes/elements. * Does NOT attempt to parse @keyframes internals (no selector scoping needed there). */ export declare function scopeCSS(css: string, scopeId: string): string; //# sourceMappingURL=scope-style.d.ts.map