import { MotionBaseToken } from './base'; import type { ColorPalettes, PresetColorType } from './presetColors'; export interface SeedToken { colors: PresetColorType & Partial; colorPrimary: string; colorSuccess: string; colorWarning: string; colorError: string; colorInfo: string; colorLink: string; colorWhite: string; colorWhiteSecondary: string; colorWhiteTertiary: string; colorBlack: string; colorTextBase: string; colorBgBase: string; colorBgMask: string; colorSpinMask: string; fontFamily: string; fontFamilyCode: string; fontSize: number; lineWidth: number; lineType: string; borderRadius: number; sizeUnit: number; sizeStep: number; baseHeight: number; zIndexBase: number; zIndexPopupBase: number; motion: boolean; motions: Partial; shadows: { MD: string; XS: string; }; }