import type { VueNode } from '@antdv/ui/es/types'; import type { Ref } from 'vue'; import type { CSSInterpolation } from '../../cssinjs'; import type { AliasToken } from './alias'; import type { ComponentTokenMap } from './components'; export type OverrideToken = { [key in keyof ComponentTokenMap]: Partial & Partial; }; /** Final token which contains the components level override */ export type GlobalToken = AliasToken & ComponentTokenMap; export type { AliasToken } from './alias'; export type { ComponentTokenMap } from './components'; export type { ColorMapToken, ColorNeutralMapToken, CommonMapToken, FontMapToken, HeightMapToken, MapToken, SizeMapToken, StyleMapToken, } from './maps'; export { PresetColors } from './presetColors'; export type { ColorPalettes, PresetColorKey, PresetColorType } from './presetColors'; export type { SeedToken } from './seeds'; export type UseComponentStyleResult = [(node: VueNode) => VueNode, Ref]; export type GenerateStyle = (token: ComponentToken) => ReturnType;