import type { CSSObject } from 'dw-neit-cssinjs'; import type { AliasToken, PresetColorKey, TokenWithCommonCls } from '../internal'; interface CalcColor { /** token[`${colorKey}-1`] */ lightColor: string; /** token[`${colorKey}-3`] */ lightBorderColor: string; /** token[`${colorKey}-6`] */ darkColor: string; /** token[`${colorKey}-7`] */ textColor: string; } type GenCSS = (colorKey: PresetColorKey, calcColor: CalcColor) => CSSObject; export default function genPresetColor>(token: Token, genCss: GenCSS): CSSObject; export {};