/// import type { IndicatorBaseImgType, IndicatorBaseType } from './components/base'; import './index.less'; export interface TypeIndicatorBaseProps { /** 类型 */ type: IndicatorBaseType; /** 颜色 */ color: IndicatorBaseImgType; /** 宽度 */ width?: number; /** 高度 */ height?: number; content?: React.ReactNode; footer?: React.ReactNode; style?: React.CSSProperties; } declare const IndicatorBase: (props: TypeIndicatorBaseProps) => import("react").JSX.Element; export default IndicatorBase;