import { ClassNameGeneratorOption, ClassNamesUtil } from "../types"; import { EmotionCache } from '@emotion/css/create-instance'; /** * CSS相关方法生成器 用于序列化的样式转换生成 className * @param cache * @param options */ export declare const createCSS: (cache: EmotionCache, options: ClassNameGeneratorOption) => { css: { (template: TemplateStringsArray, ...args: import("@emotion/serialize").CSSInterpolation[]): string; (...args: import("@emotion/serialize").CSSInterpolation[]): string; }; cx: ClassNamesUtil; };