import type { CSSProperties } from 'react'; import React from 'react'; import './style/index.less'; export interface StatusCardProps { /** * @description 渲染不同状态类型下的卡片样式 * @default "normal" */ status?: 'waitting' | 'processing' | 'finished' | 'canceled' | 'normal' | 'urgency' | 'high' | 'medium' | 'low'; /** * @description 卡片类型 * @default "normal" */ type?: 'simple' | 'dot' | 'normal'; /** * @description 卡片标题 * @default "" */ title?: React.ReactNode; /** * @description 卡片内容 * @default "" */ content?: React.ReactNode; /** * @description 卡片样式类名 * @default - */ className?: string; /** * @description 卡片自定义style * @default {} */ style?: CSSProperties; } export declare const StatusCard: (props: StatusCardProps) => JSX.Element;