import React from 'react'; import './DCountUp.less'; import { PropsTypes } from '@orca-fe/deye-typings'; export declare type DCountProps = { value?: number; prefix?: string; suffix?: string; }; export interface DCountupProps extends React.HTMLAttributes { value?: number; prefix?: string; suffix?: string; } declare const DCountUp: { (props: DCountupProps): JSX.Element; title: string; propsDef: PropsTypes[]; style: boolean; }; export default DCountUp;