import type { SourceMap } from 'rollup'; export type TransformStyleResult = null | { code: string; map: SourceMap | null; deps: Set; }; export type TransformStyle = (source: string, lang: string) => TransformStyleResult | Promise;