/** Token种子 */ export declare const tokenSeed: readonly ["colorPrimary", "colorSuccess", "colorWarning", "colorError", "colorInfo", "colorLink", "colorTextBase", "colorBgBase", "fontSize", "sizeStep", "sizeUnit", "borderRadius", "wireframe"]; export type TokenSeedType = (typeof tokenSeed)[number]; export declare const TOKEN_CATEGORY: readonly ["colorPrimary", "colorSuccess", "colorWarning", "colorError", "colorInfo", "colorText", "colorBg", "colorFill", "colorSplit", "font", "radius", "space", "screen", "line", "motion", "control", "others"]; export type TokenCategoryType = (typeof TOKEN_CATEGORY)[number]; /** Token分类 */ export declare const tokenCategory: Record; /** 获取Token类型 */ export declare function getTokenType(tokenName: string): TokenCategoryType; /** 全局Token分类 */ export declare const globalTokenCategory: Record<"line" | "space" | "screen" | "colorSplit" | "colorPrimary" | "colorSuccess" | "colorWarning" | "colorError" | "colorInfo" | "motion" | "colorText" | "colorFill" | "colorBg" | "font" | "radius" | "control" | "others", Record>;