import * as React from 'react'; import { type VariantProps } from 'class-variance-authority'; import type { ComponentPropsWithout, RemovedProps } from '../helpers/component-props.js'; declare const colorVariants: (props?: ({ color?: "brand0" | "brand1" | "success0" | "success1" | "warning0" | "warning1" | "error0" | "error1" | "infoPrimary" | "infoSecondary" | "infoTertiary" | "infoQuaternary" | "infoWhite" | "containerPrimary" | "containerSecondary0" | "containerSecondary1" | "bg0" | "bg1" | "lines" | "masks0" | "masks1" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; type ColorDivProps = ComponentPropsWithout<'div', RemovedProps>; interface CommonColorProps extends VariantProps { } type ColorProps = CommonColorProps & ColorDivProps; /** * Color - 颜色容器 * * @description 提供主题色彩配置的容器组件,支持品牌色、状态色等多种预设颜色 * @deprecated 已作废,请使用 默认的配色 或 直接设置颜色 */ declare const Color: React.ForwardRefExoticComponent>; export { Color }; export type { ColorProps };