import * as React from 'react'; import './style/index.less'; interface TrendProps { className?: string; style?: React.CSSProperties; flag?: string; size?: string; value?: string; colorful?: boolean; reverseColor?: boolean; children?: React.ReactChildren; } declare const Trend: React.FC; export default Trend;