import { type ResolvedConfig } from 'vite'; /** * Extract styleUrl/styleUrls from source using OXC parser, * read and preprocess them via Vite. * Returns a Map of absolute path → compiled CSS for the compiler to use. */ export declare function resolveStyleFiles(code: string, id: string, resolvedConfig: ResolvedConfig): Promise | undefined>; /** * Preprocess inline styles that contain SCSS/Sass syntax. * Uses OXC parser to extract style strings from decorator arguments * and runs them through Vite's preprocessCSS. */ export declare function preprocessInlineStyles(code: string, id: string, inlineStyleLanguage: string, resolvedConfig: ResolvedConfig): Promise | undefined>;