import { type ResolvedConfig } from 'vite'; import type { AstroConfig } from '../../types/public/config.js'; import type { CompileCssResult } from './types.js'; export type PartialCompileCssResult = Pick; interface PreprocessorResult { code: string; map?: string; } interface PreprocessorError { error: string; } export type PreprocessStyleFn = (content: string, attrs: Record) => Promise; export declare function createStylePreprocessor({ filename, viteConfig, astroConfig, cssPartialCompileResults, cssTransformErrors, }: { filename: string; viteConfig: ResolvedConfig; astroConfig: AstroConfig; cssPartialCompileResults: Partial[]; cssTransformErrors: Error[]; }): PreprocessStyleFn; export {};