import React, { ReactNode } from 'react'; type StatusTagProps = { /** 颜色类型 */ colorType: 'status1' | 'status2' | 'status3' | 'status4' | 'status5' | 'status6'; /** 样式类型 */ type?: 'box' | 'dot'; children: ReactNode; }; export default function (props: StatusTagProps): React.JSX.Element; export {};