/** * This file is part of the NocoBase (R) project. * Copyright (c) 2020-2024 NocoBase Co., Ltd. * Authors: NocoBase Team. * * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License. * For more information, please refer to: https://www.nocobase.com/agreement. */ import type { TokenValue } from '../interface'; export declare const TOKEN_SORTS: ("colorSplit" | "motion" | "colorText" | "colorFill" | "line" | "font" | "space" | "seed" | "colorCommon" | "colorBg" | "radius" | "screen" | "control" | "others")[]; export type TokenType = (typeof TOKEN_SORTS)[number]; export declare function getTypeOfToken(tokenName: string): TokenType; export declare const classifyToken: (token: Record) => Record;