import type { HTMLAttributes } from 'react';
import type { PresetColorType } from '../helpers/colors';
export interface StatusTextProps extends HTMLAttributes {
/**
* 内置颜色
* @default 'primary'
*/
status?: PresetColorType;
/**
* 显示的文案
*/
text?: string;
}